| 57 | } |
| 58 | |
| 59 | void PutChars(std::ostream& stream, char c, int n) { |
| 60 | for (int i = 0; i < n; ++i) { |
| 61 | stream.put(c); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | void PrintKeyValueMetadata(std::ostream& stream, |
| 66 | const KeyValueMetadata& key_value_metadata, |
no test coverage detected