| 120 | } |
| 121 | |
| 122 | FORCE_INLINE static String GetString(const Value& node, const char* name, const String& defaultValue) |
| 123 | { |
| 124 | auto member = node.FindMember(name); |
| 125 | return member != node.MemberEnd() ? member->value.GetText() : defaultValue; |
| 126 | } |
| 127 | |
| 128 | #define DECLARE_GETTER(type) \ |
| 129 | FORCE_INLINE static type Get##type(const Value& node, const char* name, const type& defaultValue) \ |
no test coverage detected