We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39942ab commit 1a1de24Copy full SHA for 1a1de24
clang/lib/Tooling/Transformer/RangeSelector.cpp
@@ -139,7 +139,8 @@ RangeSelector transformer::node(std::string ID) {
139
(Node->get<Stmt>() != nullptr && Node->get<Expr>() == nullptr))
140
? tooling::getExtendedRange(*Node, tok::TokenKind::semi,
141
*Result.Context)
142
- : CharSourceRange::getTokenRange(Node->getSourceRange(true));
+ : CharSourceRange::getTokenRange(
143
+ Node->getSourceRange(/*IncludeQualifier=*/true));
144
};
145
}
146
0 commit comments