forked from OSchip/llvm-project
c2e9baf2e8
This commit fixes cppcoreguidelines-pro-type-vararg false positives on 'char *' variables. The incorrect warnings generated by clang-tidy can be illustrated with the following minimal example: ``` goid foo(char* in) { char *tmp = in; } ``` The problem is that __builtin_ms_va_list desugared as 'char *', which leads to false positives. Fixes bugzilla issue 48042. Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D101259 |
||
---|---|---|
.. | ||
Unit | ||
clang-apply-replacements | ||
clang-change-namespace | ||
clang-doc | ||
clang-include-fixer | ||
clang-move | ||
clang-query | ||
clang-reorder-fields | ||
clang-tidy | ||
modularize | ||
pp-trace | ||
.clang-format | ||
CMakeLists.txt | ||
lit.cfg.py | ||
lit.site.cfg.py.in |