| 232 | } |
| 233 | |
| 234 | void WriteIndent() { |
| 235 | size_t count = (Base::level_stack_.GetSize() / sizeof(typename Base::Level)) * indentCharCount_; |
| 236 | PutN(*Base::os_, static_cast<typename TargetEncoding::Ch>(indentChar_), count); |
| 237 | } |
| 238 | |
| 239 | Ch indentChar_; |
| 240 | unsigned indentCharCount_; |