returns a string used for identation.
Definition at line 98 of file ast-tools.cc. References indent. Referenced by footer(), and header(). 00099 { 00100 string result = ""; 00101 00102 for(unsigned int i=0; i<indent; i++) 00103 result += " "; 00104 00105 return result; 00106 }
Here is the caller graph for this function: ![]()
|
1.5.2