CarlosAlbertoEnciso marked 2 inline comments as done.
CarlosAlbertoEnciso added inline comments.


================
Comment at: lib/Serialization/ASTReader.cpp:8101-8103
+    UsingDecl *D = dyn_cast_or_null<UsingDecl>(
+        GetDecl(UnusedUsingCandidates[I]));
+    if (D)
----------------
dblaikie wrote:
> roll the declaration into the condition, perhaps:
> 
>   if (auto *D = dyn_cast_or_null...)
>     Decls.insert(D);
Done.


================
Comment at: test/Modules/warn-unused-using.cpp:5
+
+// For modules, the warning should only fire the first time, when the module is
+// built.
----------------
dblaikie wrote:
> This would only warn for the unused local using, but wouldn't fire for an 
> namespace-scoped unused using? Perhaps there should be a test for that?
I have added a namespace-scoped unused using.


https://reviews.llvm.org/D44826



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

Reply via email to