[PATCH] D101259: [clang-tidy] Fix cppcoreguidelines-pro-type-vararg false positives with __builtin_ms_va_list

Aaron Ballman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 26 14:37:34 PDT 2021


aaron.ballman added a comment.

It looks like the CI pipeline is failing on the tests.



================
Comment at: clang-tools-extra/clang-tidy/cppcoreguidelines/ProTypeVarargCheck.cpp:68
+  if (Desugar == Context.getBuiltinMSVaListType().getDesugaredType(Context)) {
+    const auto MSVaListType = Context.getBuiltinMSVaListType();
+    QualType Ty;
----------------



Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D101259/new/

https://reviews.llvm.org/D101259



More information about the cfe-commits mailing list