Defined in header <cparse/Indentation.hh>
static constexpr uint_fast16_t const DEFAULT_STEPSIZE = 2U;
The default step size — 2U — used as the default argument for the constructor and reset() when no explicit value is given.
Notes
constexpr, so usable in constant expressions. Referenceable by name from consumers who want to compute an indent relative to the default:
Indentation indent(2 * fedem::parser::Indentation::DEFAULT_STEPSIZE);
// step size = 4
See also
- Indentation::Indentation — default argument.
- Indentation::reset — default argument.

