| 151 | void JsonWriter::EndObject() { impl_->EndObject(); } |
| 152 | void JsonWriter::StartArray() { impl_->StartArray(); } |
| 153 | void JsonWriter::EndArray() { impl_->EndArray(); } |
| 154 | |
| 155 | // Specializations for common primitive metric types. |
| 156 | template<> void JsonWriter::Value(const bool& val) { |