]> git.sur5r.net Git - cc65/blobdiff - src/cc65/typecmp.h
Changed names of the pragmas to be identical to the corresponding command line
[cc65] / src / cc65 / typecmp.h
index 584bd2c448b2cceb2dd0c1d0662b42b539b31ed0..6ccaa33713fe9a8c1dfc8d7716b78767afa987b0 100644 (file)
 /* Degree of type compatibility. Must be in ascending order */
 typedef enum {
     TC_INCOMPATIBLE,             /* Distinct types */
-    TC_QUAL_DIFF,                /* Types differ in qualifier of pointer */
     TC_SIGN_DIFF,                /* Signedness differs */
     TC_COMPATIBLE = TC_SIGN_DIFF, /* Compatible types */
-    TC_STRICT_COMPATIBLE,                /* Struct compatibility */
+    TC_QUAL_DIFF,                /* Types differ in qualifier of pointer */
+    TC_STRICT_COMPATIBLE,                /* Strict compatibility */
     TC_EQUAL,                    /* Types are equal */
     TC_IDENTICAL                 /* Types are identical */
 } typecmp_t;
@@ -67,7 +67,7 @@ typedef enum {
 
 
 
-typecmp_t TypeCmp (const type* lhs, const type* rhs);
+typecmp_t TypeCmp (const Type* lhs, const Type* rhs);
 /* Compare two types and return the result */