index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang-tools-extra
/
clang-tidy
/
misc
/
MiscTidyModule.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[clang-tidy] New checker for redundant expressions.
Etienne Bergeron
2016-04-26
1
-0
/
+3
*
A clang-tidy check for std:accumulate.
Alexander Kornienko
2016-04-26
1
-0
/
+3
*
[clang-tidy] New checker to detect suspicious string constructor.
Etienne Bergeron
2016-04-21
1
-0
/
+3
*
[clang-tidy] Add new checker for comparison with runtime string functions.
Etienne Bergeron
2016-04-21
1
-0
/
+3
*
Initial version of misc-unused-using-decl check.
Daniel Jasper
2016-04-19
1
-0
/
+3
*
[clang-tidy] Add new checker for suspicious sizeof expressions
Etienne Bergeron
2016-04-15
1
-0
/
+3
*
[clang-tidy] Add checker for operations between integrals and pointers
Etienne Bergeron
2016-04-15
1
-0
/
+3
*
[clang-tidy] Add check misc-multiple-statement-macro
Samuel Benzaquen
2016-04-14
1
-0
/
+3
*
[clang-tidy] add new checker for string literal with NUL character.
Etienne Bergeron
2016-04-07
1
-0
/
+3
*
[clang-tidy] Add a new checker to detect missing comma in initializer list.
Etienne Bergeron
2016-03-31
1
-0
/
+3
*
[clang-tidy] Add check to detect dangling references in value handlers.
Samuel Benzaquen
2016-03-29
1
-0
/
+3
*
[clang-tidy] Added a check for forward declaration in the potentially wrong n...
Alexander Kornienko
2016-02-24
1
-0
/
+3
*
[clang-tidy] Add a check to find unintended semicolons that changes the seman...
Gabor Horvath
2016-02-11
1
-0
/
+3
*
[clang-tidy] Add 'misc-misplaced-widening-cast' check.
Daniel Marjamaki
2016-02-09
1
-0
/
+3
*
[clang-tidy] Move incorrect-roundings to upstream.
Haojian Wu
2016-02-08
1
-0
/
+3
*
Support virtual-near-miss check.
Alexander Kornienko
2016-01-13
1
-0
/
+3
*
[clang-tidy] Add non-inline function definition and variable definition check...
Alexander Kornienko
2016-01-08
1
-0
/
+3
*
[clang-tidy] Check for suspicious string assignments.
Gabor Horvath
2015-12-15
1
-0
/
+3
*
[clang-tidy] Const std::move() argument ClangTidy check
Alexander Kornienko
2015-11-25
1
-0
/
+3
*
Add a new checker that tests whether a throw expression throws by value, and ...
Aaron Ballman
2015-10-09
1
-0
/
+3
*
Adding a checker (misc-non-copyable-objects) that detects situations where a ...
Aaron Ballman
2015-09-30
1
-2
/
+4
*
Adding a checker (misc-new-delete-overloads) that detects mismatched overload...
Aaron Ballman
2015-09-29
1
-0
/
+3
*
[clang-tidy] Add misc-sizeof-container check to find sizeof() uses on stl
Alexander Kornienko
2015-09-10
1
-0
/
+3
*
[clang-tidy] Move misc-use-override and readability-shrink-to-fit to "moderni...
Alexander Kornienko
2015-08-31
1
-2
/
+0
*
Add a new clang-tidy check (misc-move-constructor-init) that diagnoses move c...
Aaron Ballman
2015-08-20
1
-0
/
+3
*
Add misc-unused-alias-decls check that currently finds unused namespace
Daniel Jasper
2015-07-31
1
-0
/
+3
*
Initial version of clang-tidy check to find and fix unused parameters.
Daniel Jasper
2015-07-20
1
-0
/
+3
*
clang-tidy: Add checker that warn when macro argument with side effects is re...
Daniel Marjamaki
2015-06-17
1
-0
/
+3
*
clang-tidy: Add checker that warns about missing parentheses in macros
Daniel Marjamaki
2015-06-16
1
-0
/
+3
*
[clang-tidy] Renamed misc-noexcept-move-ctors to misc-noexcept-move-constructor
Alexander Kornienko
2015-05-27
1
-3
/
+3
*
Add a clang-tidy check for move constructors/assignment ops without noexcept.
Alexander Kornienko
2015-05-22
1
-0
/
+3
*
[clang-tidy] Refactor: Rename clang-tidy misc check files and classes to foll...
Alexander Kornienko
2015-03-09
1
-7
/
+7
*
[clang-tidy] Refactor: Move misc clang-tidy checks to namespace clang::tidy::...
Alexander Kornienko
2015-03-02
1
-1
/
+4
*
[clang-tidy] Assert related checkers
Alexander Kornienko
2015-03-02
1
-0
/
+6
*
[clang-tidy] Checker for inaccurate use of erase() method.
Gabor Horvath
2015-02-10
1
-0
/
+3
*
Verify assign operator signatures.
Samuel Benzaquen
2015-02-09
1
-0
/
+3
*
[clang-tidy] Checker for inefficient use of algorithms on associative containers
Gabor Horvath
2015-02-07
1
-0
/
+3
*
[cleanup] Re-sort the #include lines with llvm/utils/sort_includes.py
Chandler Carruth
2015-01-14
1
-1
/
+1
*
[clang-tidy] Add clang-tidy check for unique_ptr's reset+release -> move
Alexander Kornienko
2014-12-05
1
-0
/
+3
*
[clang-tidy] Bring order to check registration.
Alexander Kornienko
2014-10-26
1
-11
/
+0
*
[clang-tidy] Move some of the misc checks to readability/
Alexander Kornienko
2014-10-15
1
-6
/
+9
*
[clang-tidy] Add check misc-braces-around-statements.
Alexander Kornienko
2014-10-02
1
-0
/
+3
*
[clang-tidy] Add a checker for long functions.
Benjamin Kramer
2014-09-15
1
-0
/
+2
*
Unique-ptrify ClangTidyCheckFactories. Add a more convenient alternative to
Alexander Kornienko
2014-09-10
1
-21
/
+11
*
[clang-tidy] Add a checker for code that looks like a delegate constructors b...
Benjamin Kramer
2014-07-31
1
-0
/
+4
*
Reapply r213647 with a fix.
Benjamin Kramer
2014-07-23
1
-0
/
+4
*
Revert r213647; the added test triggers an assertion.
Richard Smith
2014-07-23
1
-4
/
+0
*
[clang-tidy] Add a check for RAII temporaries.
Benjamin Kramer
2014-07-22
1
-0
/
+4
*
[clang-tidy] Add a checker for swapped arguments.
Benjamin Kramer
2014-07-14
1
-0
/
+4
*
[clang-tidy] Add a checker for implicit bool conversion of a bool*.
Benjamin Kramer
2014-07-11
1
-0
/
+4
[next]