juliehockett closed this revision.
juliehockett added a comment.
Closed in https://reviews.llvm.org/rL339592.
https://reviews.llvm.org/D48908
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-
Eugene.Zelenko added inline comments.
Comment at: clang-tools-extra/clang-doc/Mapper.cpp:32
+ // Skip function-internal decls.
+ if (const auto *F = D->getParentFunctionOrMethod())
+return true;
Type is not easily deducible, so please don't use auto.
http
juliehockett created this revision.
juliehockett added reviewers: ioeric, lebedev.ri.
juliehockett added a project: clang-tools-extra.
Things declared internally to functions shouldn't be documented, and so bail
early if encountered.
https://reviews.llvm.org/D48908
Files:
clang-tools-extra/c