aaron.ballman added inline comments.

================
Comment at: lib/Sema/SemaDeclCXX.cpp:2385
+  return RD->isStruct() && RD->hasAttr<UuidAttr>() &&
+         RD->getName() == "IUnknown" &&
+         (RD->getAttr<UuidAttr>())->getGuid() ==
----------------
This should probably also ensure that the class is in the global namespace so 
we don't handle `foobar::IUnknown` improperly.


================
Comment at: lib/Sema/SemaDeclCXX.cpp:2386
+         RD->getName() == "IUnknown" &&
+         (RD->getAttr<UuidAttr>())->getGuid() ==
+             "00000000-0000-0000-C000-000000000046" &&
----------------
Can remove the spurious parens. Also, rather than call `hasAttr<>` followed by 
`getAttr<>` on the same thing, you should factor out the call to `getAttr<>`.


https://reviews.llvm.org/D37308



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

Reply via email to