njames93 added inline comments.

================
Comment at: 
clang-tools-extra/clang-tidy/cppcoreguidelines/ProTypeVarargCheck.cpp:84
+  // In these cases we need to remove all typedefs one by one to check this.
+  const auto VaListKind = Context.getTargetInfo().getBuiltinVaListKind();
+  using BuiltinVaListKind = TargetInfo::BuiltinVaListKind;
----------------
We typically avoid cost qualification on local variables and as the type isn't 
spelled in the initializer, can you replace auto with the actual deduced type. 


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

https://reviews.llvm.org/D101259

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to