| 14 | |
| 15 | namespace YAML { |
| 16 | struct Indentation { |
| 17 | Indentation(std::size_t n_) : n(n_) {} |
| 18 | std::size_t n; |
| 19 | }; |
| 20 | |
| 21 | inline ostream_wrapper& operator<<(ostream_wrapper& out, |
| 22 | const Indentation& indent) { |
no outgoing calls
no test coverage detected