| 16 | namespace clang::insights { |
| 17 | |
| 18 | void OutputFormatHelper::Indent(unsigned count) |
| 19 | { |
| 20 | mOutput.insert(mOutput.size(), count, ' '); |
| 21 | } |
| 22 | //----------------------------------------------------------------------------- |
| 23 | |
| 24 | void OutputFormatHelper::AppendParameterList(const ArrayRef<ParmVarDecl*> parameters, |