aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/misc/StaticAssertCheck.cpp
AgeCommit message (Expand)AuthorFilesLines
2025-06-14[clang-tidy][NFC] change patterns 'anyOf(..., anything())' to 'optionally(......Baranov Victor1-8/+5
2025-05-25[clang-tidy] Remove unused includes (NFC) (#141420)Kazu Hirata1-2/+0
2024-01-12[clang-tidy] Fix false-positives in misc-static-assert caused by non-constexp...Piotr Zegar1-1/+9
2023-08-27[clang-tidy][NFC] Fix modernize-return-braced-init-list findingsPiotr Zegar1-2/+2
2023-01-14[clang-tidy][NFC] Use C++17 nested namespaces in the clang-tidy folderCarlos Galvez1-6/+2
2023-01-07[clang-tools-extra] Use std::optional instead of llvm::Optional (NFC)Kazu Hirata1-1/+1
2023-01-07[clang-tools-extra] Add #include <optional> (NFC)Kazu Hirata1-0/+1
2021-06-25[clang-tools-extra] Rename StringRef _lower() method calls to _insensitive()Martin Storsjö1-2/+2
2021-05-30Revert "[clang-tidy] Simplify static assert check"Roman Lebedev1-19/+30
2021-03-01[clang-tidy] Tweak misc-static-assert fix in c++17Nathan James1-5/+4
2021-02-13[clang-tidy] Simplify static assert checkStephen Kelly1-30/+19
2020-10-15clang-{tools,unittests}: Stop using SourceManager::getBuffer, NFCDuncan P. N. Exon Smith1-1/+2
2020-03-10[NFC] use hasAnyOperatorName and hasAnyOverloadedOperatorName functions in cl...Nathan James1-1/+1
2020-03-03[clang-tidy] Change checks to use new isLanguageVersionSupported restrictionNathan James1-5/+0
2019-04-04Make SourceManager::createFileID(UnownedTag, ...) take a const llvm::MemoryBu...Nico Weber1-1/+1
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-08-09Port getLocEnd -> getEndLocStephen Kelly1-1/+1
2018-08-09Port getLocStart -> getBeginLocStephen Kelly1-2/+2
2017-06-03[clang-tidy] Make misc-static-assert accept assert(!"msg")Florian Gross1-1/+3
2016-08-01[clang-tidy] remove trailing whitespaces and retabKirill Bobyrev1-1/+1
2016-05-31[ASTMatchers] Added ignoringParenImpCasts to has matchersPiotr Padlewski1-3/+4
2016-05-03[clang-tidy] Speedup misc-static-assert.Samuel Benzaquen1-3/+7
2016-05-02[clang-tidy] Cleaning namespaces to be more consistant across checkers.Etienne Bergeron1-0/+2
2015-09-17Refactors AST matching code to use the new AST matcher names. This patch corr...Aaron Ballman1-2/+2
2015-08-31Allow the static assert clang-tidy checker to run over C code.Aaron Ballman1-4/+3
2015-08-31Using an early return as it is more clear; NFC.Aaron Ballman1-38/+38
2015-08-28Disable clang-tidy misc checkers when not compiling in C++ mode. Many of the ...Aaron Ballman1-30/+42
2015-05-29[clang-tidy] Fix for llvm.org/PR23355Szabolcs Sipos1-4/+7
2015-05-23[clang-tidy] Fix for llvm.org/PR23572Szabolcs Sipos1-1/+3
2015-05-08[clang-tidy] Fix for llvm.org/PR23161Szabolcs Sipos1-1/+1
2015-04-10[clang-tidy] Fix for llvm.org/PR23161Szabolcs Sipos1-8/+12
2015-03-15[clang-tidy] Fix false positives in the misc-static-assert check http://llvm....Alexander Kornienko1-3/+11
2015-03-09[clang-tidy] Fix assertion when a dependent expression is used in an assert.Alexander Kornienko1-1/+3
2015-03-02[clang-tidy] Assert related checkersAlexander Kornienko1-0/+138