| 52 | |
| 53 | template <typename... T> |
| 54 | static Status ParseError(T&&... t) { |
| 55 | return Status::Invalid("JSON parse error: ", std::forward<T>(t)...); |
| 56 | } |
| 57 | |
| 58 | const std::string& Kind::Name(Kind::type kind) { |
| 59 | static const std::string names[] = { |
no test coverage detected