| 177 | } |
| 178 | |
| 179 | void CPPHelper::namespaceClose(CodeGenerator &cg, int depth) { |
| 180 | for (int i = 0; i < depth; i++) { |
| 181 | cg.decreaseIndentation(); |
| 182 | cg.writeLine("}"); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | string CPPHelper::normalizeString(const string &text) { |
| 187 | string result = text; |
nothing calls this directly
no test coverage detected