| 32 | #include "validate_writer.hpp" |
| 33 | |
| 34 | ValidateWriter::ValidateWriter(FILE* file) { |
| 35 | indent = 0; |
| 36 | sub = FALSE; |
| 37 | this->file = file; |
| 38 | } |
| 39 | |
| 40 | void ValidateWriter::printIndent(std::ostringstream& stream) { |
| 41 | if (file == nullptr) return; |
nothing calls this directly
no outgoing calls
no test coverage detected