MCPcopy Create free account
hub / github.com/bdring/FluidNC / dec_level

Method dec_level

FluidNC/src/JSONEncoder.cpp:123–125  ·  view source on GitHub ↗

Private function to increment the nesting level.

Source from the content-addressed store, hash-verified

121
122// Private function to increment the nesting level.
123void JSONencoder::dec_level() {
124 --level;
125}
126
127void JSONencoder::indent() {
128 for (int i = 0; i < 2 * level; i++) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected