/* Return true if this is an array type */
{
return (GetType (T) == T_TYPE_ARRAY);
-}
+}
#else
# define IsTypeArray(T) (GetType (T) == T_TYPE_ARRAY)
#endif
return (GetQualifier (T) & T_QUAL_CONST) != 0;
}
#else
-# define IsQualConst(T) (GetQualifier (T) & T_QUAL_CONST) != 0)
+# define IsQualConst(T) ((GetQualifier (T) & T_QUAL_CONST) != 0)
#endif
#if defined(HAVE_INLINE)
return (GetQualifier (T) & T_QUAL_VOLATILE) != 0;
}
#else
-# define IsQualVolatile(T) (GetQualifier (T) & T_QUAL_VOLATILE) != 0)
+# define IsQualVolatile(T) ((GetQualifier (T) & T_QUAL_VOLATILE) != 0)
#endif
#if defined(HAVE_INLINE)
return (GetQualifier (T) & T_QUAL_RESTRICT) != 0;
}
#else
-# define IsQualRestrict(T) (GetQualifier (T) & T_QUAL_RESTRICT) != 0)
+# define IsQualRestrict(T) ((GetQualifier (T) & T_QUAL_RESTRICT) != 0)
#endif
int IsFastCallFunc (const Type* T) attribute ((const));