| 91 | inline bool require_bool(const Value & object, const std::string & key) { |
| 92 | return object.require(key).as_bool(); |
| 93 | } |
| 94 | |
| 95 | inline std::string require_string(const Value & object, const std::string & key) { |
| 96 | return object.require(key).as_string(); |
| 97 | } |
| 98 |
no outgoing calls
no test coverage detected