Private function to increment the nesting level.
| 121 | |
| 122 | // Private function to increment the nesting level. |
| 123 | void JSONencoder::dec_level() { |
| 124 | --level; |
| 125 | } |
| 126 | |
| 127 | void JSONencoder::indent() { |
| 128 | for (int i = 0; i < 2 * level; i++) { |
nothing calls this directly
no outgoing calls
no test coverage detected