[PATCH] D23848: Add a clang-tidy Visual Studio extension
Adrian McCarthy via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 25 14:59:18 PDT 2016
amccarth added inline comments.
================
Comment at: clang-tidy-vs/ClangTidy/CheckTree.cs:68
@@ +67,3 @@
+ return Name_;
+ return ParentPath + "-" + Name_;
+ }
----------------
OK, cool. I assumed that the root had a name. Thus a node with no parent (a root) could return its name and the rest of the children would each append '-' + Name_. But if roots are nameless, then your solution is fine.
https://reviews.llvm.org/D23848
More information about the cfe-commits
mailing list