aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaojian Wu <hokein.wu@gmail.com>2022-11-11 14:40:08 +0100
committerHaojian Wu <hokein.wu@gmail.com>2022-11-11 14:40:08 +0100
commit15b2702e83fa1e99e56b51a4254e8dc4f331ca9d (patch)
tree7ec44f4ce60ae110fe705cd42ff7f5c6bc351f3c
parent28b2f7921597e05e01e6ca92953eaf6695b64b21 (diff)
downloadllvm-15b2702e83fa1e99e56b51a4254e8dc4f331ca9d.zip
llvm-15b2702e83fa1e99e56b51a4254e8dc4f331ca9d.tar.gz
llvm-15b2702e83fa1e99e56b51a4254e8dc4f331ca9d.tar.bz2
[include-cleaner] NFC, correct a comment in
PragmaIncludes::RecordPragma.
-rw-r--r--clang-tools-extra/include-cleaner/lib/Record.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/include-cleaner/lib/Record.cpp b/clang-tools-extra/include-cleaner/lib/Record.cpp
index 4dabd4a..72db299 100644
--- a/clang-tools-extra/include-cleaner/lib/Record.cpp
+++ b/clang-tools-extra/include-cleaner/lib/Record.cpp
@@ -225,9 +225,9 @@ public:
// 2. handleCommentInMainFile("// IWYU pragma: keep")
// 3. InclusionDirective("bar.h")
//
- // This code stores the last location of "IWYU pragma: keep" (or export)
- // comment in the main file, so that when next InclusionDirective is
- // called, it will know that the next inclusion is behind the IWYU pragma.
+ // This code stores the last location of "IWYU pragma: keep" comment in
+ // the main file, so that when next InclusionDirective is called, it will
+ // know that the next inclusion is behind the IWYU pragma.
LastPragmaKeepInMainFileLine = CommentLine;
}
return false;