| 95 | } |
| 96 | |
| 97 | void footer() { |
| 98 | std::string line(columnSize_, '='); |
| 99 | out_ << indent_ << line; |
| 100 | for (int i = 1; i < numScalarColumns_; i++) { |
| 101 | out_ << " " << line; |
| 102 | } |
| 103 | out_ << " == " << line << " == " << line << std::endl; |
| 104 | } |
| 105 | |
| 106 | private: |
| 107 | void addColumn(const std::string& text, size_t columnSize) { |
no outgoing calls
no test coverage detected