[PATCH] D146875: [clang-tidy] Fix example provided by add_new_check.py
Piotr Zegar via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 29 10:27:38 PDT 2023
PiotrZSL updated this revision to Diff 509412.
PiotrZSL added a comment.
Remove added --
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146875/new/
https://reviews.llvm.org/D146875
Files:
clang-tools-extra/clang-tidy/add_new_check.py
Index: clang-tools-extra/clang-tidy/add_new_check.py
===================================================================
--- clang-tools-extra/clang-tidy/add_new_check.py
+++ clang-tools-extra/clang-tidy/add_new_check.py
@@ -138,9 +138,9 @@
if (!MatchedDecl->getIdentifier() || MatchedDecl->getName().startswith("awesome_"))
return;
diag(MatchedDecl->getLocation(), "function %%0 is insufficiently awesome")
- << MatchedDecl;
- diag(MatchedDecl->getLocation(), "insert 'awesome'", DiagnosticIDs::Note)
+ << MatchedDecl
<< FixItHint::CreateInsertion(MatchedDecl->getLocation(), "awesome_");
+ diag(MatchedDecl->getLocation(), "insert 'awesome'", DiagnosticIDs::Note);
}
} // namespace clang::tidy::%(namespace)s
@@ -293,7 +293,7 @@
def get_actual_filename(dirname, filename):
- if not os.path.isdir(dirname):
+ if not os.path.isdir(dirname):
return ''
name = os.path.join(dirname, filename)
if (os.path.isfile(name)):
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146875.509412.patch
Type: text/x-patch
Size: 970 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230329/c12cdcf6/attachment.bin>
More information about the cfe-commits
mailing list