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,
6666                  " uninitialized array (as opposed to reusing a cached " 
6767                  " MacroArgs)"  );
6868    std::copy (UnexpArgTokens.begin (), UnexpArgTokens.end (),
69-               Result->getTrailingObjects <Token> ());
69+               Result->getTrailingObjects ());
7070  }
7171
7272  return  Result;
@@ -119,7 +119,7 @@ const Token *MacroArgs::getUnexpArgument(unsigned Arg) const {
119119  assert (Arg < getNumMacroArguments () && " Invalid arg #"  );
120120  //  The unexpanded argument tokens start immediately after the MacroArgs object
121121  //  in memory.
122-   const  Token *Start = getTrailingObjects<Token> ();
122+   const  Token *Start = getTrailingObjects ();
123123  const  Token *Result = Start;
124124
125125  //  Scan to find Arg.
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments