File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ MacroArgs *MacroArgs::create(const MacroInfo *MI,
66
66
" uninitialized array (as opposed to reusing a cached "
67
67
" MacroArgs)" );
68
68
std::copy (UnexpArgTokens.begin (), UnexpArgTokens.end (),
69
- Result->getTrailingObjects <Token> ());
69
+ Result->getTrailingObjects ());
70
70
}
71
71
72
72
return Result;
@@ -119,7 +119,7 @@ const Token *MacroArgs::getUnexpArgument(unsigned Arg) const {
119
119
assert (Arg < getNumMacroArguments () && " Invalid arg #" );
120
120
// The unexpanded argument tokens start immediately after the MacroArgs object
121
121
// in memory.
122
- const Token *Start = getTrailingObjects<Token> ();
122
+ const Token *Start = getTrailingObjects ();
123
123
const Token *Result = Start;
124
124
125
125
// Scan to find Arg.
You can’t perform that action at this time.
0 commit comments