NoQ added inline comments.

================
Comment at: clang/lib/StaticAnalyzer/Checkers/ReturnValueChecker.cpp:82
+
+        Out << '\'' << Name << "' always returns "
+            << (*Value ? "true" : "false");
----------------
Charusso wrote:
> NoQ wrote:
> > Let's mention the class name as well! Maybe even the fully qualified 
> > namespace.
> The class::call part would be tricky, because you need to hook what do you 
> have in the CallDescription. It could be done with the decl-matching part, 
> but then you have to rewrite the CallDescriptionMap interface as `lookup(), 
> key(), value()`, so you could use the hooked info everywhere. It would 
> require too much overhead for a print.
Just use `CXXMethodDecl::getParent()`.


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

https://reviews.llvm.org/D63915



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

Reply via email to