]> git.sur5r.net Git - cc65/commitdiff
Fixed a few errors in the macros used by the Watcom compiler.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 30 Mar 2006 19:49:03 +0000 (19:49 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 30 Mar 2006 19:49:03 +0000 (19:49 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3712 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/datatype.h

index f4b5b0c969547886d33bdf397861a0be92f26d72..ac69f0d163d17fb41be22d3243bdd9ab7fb91a7e 100644 (file)
@@ -381,7 +381,7 @@ INLINE int IsTypeArray (const Type* T)
 /* Return true if this is an array type */
 {
     return (GetType (T) == T_TYPE_ARRAY);
-}
+}                                 
 #else
 #  define IsTypeArray(T)        (GetType (T) == T_TYPE_ARRAY)
 #endif
@@ -506,7 +506,7 @@ INLINE int IsQualConst (const Type* T)
     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)
@@ -516,7 +516,7 @@ INLINE int IsQualVolatile (const Type* T)
     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)
@@ -526,7 +526,7 @@ INLINE int IsQualRestrict (const Type* T)
     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));