| 14 | |
| 15 | template<typename T> |
| 16 | inline bool isStringType(const T &inRHS) { return false; } |
| 17 | template<> inline bool isStringType(const String &inRHS) { return true; } |
| 18 | template<> inline bool isStringType(const Dynamic &inRHS); |
| 19 | template<> inline bool isStringType(const cpp::Variant &inRHS); |
no test coverage detected