| 107 | void writeDict(const Dict*); |
| 108 | |
| 109 | void comma() { |
| 110 | if (_first) |
| 111 | _first = false; |
| 112 | else |
| 113 | _out << ','; |
| 114 | } |
| 115 | |
| 116 | template <class T> |
| 117 | void _writeInt(const char *fmt, T t) { |
nothing calls this directly
no outgoing calls
no test coverage detected