| 132 | inline bool IsInteger(BaseType t) { return t >= BASE_TYPE_UTYPE && |
| 133 | t <= BASE_TYPE_ULONG; } |
| 134 | inline bool IsFloat (BaseType t) { return t == BASE_TYPE_FLOAT || |
| 135 | t == BASE_TYPE_DOUBLE; } |
| 136 | inline bool IsLong (BaseType t) { return t == BASE_TYPE_LONG || |
| 137 | t == BASE_TYPE_ULONG; } |
| 138 | inline bool IsBool (BaseType t) { return t == BASE_TYPE_BOOL; } |
no outgoing calls
no test coverage detected