| 8 | |
| 9 | template<typename T> |
| 10 | inline bool isIntType(const T &inRHS) { return false; } |
| 11 | template<> inline bool isIntType(const int &inRHS) { return true; } |
| 12 | template<> inline bool isIntType(const Dynamic &inRHS); |
| 13 | template<> inline bool isIntType(const cpp::Variant &inRHS); |
no test coverage detected