diff options
author | José Fonseca <[email protected]> | 2008-06-24 14:02:24 +0900 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-21 22:13:56 -0700 |
commit | f8e50dd796a72c396bb22d414feba75c426c5e7e (patch) | |
tree | 54189612fc5180b70659aafb2e1683ad5d60a8f2 /src/mesa/math | |
parent | 60325331a8a76f3c783284c65b81cee471d7d64c (diff) |
mesa: Replace deprecated __MSC__ macro.
Diffstat (limited to 'src/mesa/math')
-rw-r--r-- | src/mesa/math/m_debug_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h index 2d1d8b18805..7abe6f2565a 100644 --- a/src/mesa/math/m_debug_util.h +++ b/src/mesa/math/m_debug_util.h @@ -303,7 +303,7 @@ enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 }; */ #if defined(__GNUC__) # define ALIGN16(type, array) type array __attribute__ ((aligned (16))) -#elif defined(__MSC__) +#elif defined(_MSC_VER) # define ALIGN16(type, array) type array __declspec(align(16)) /* GH: Does this work? */ #elif defined(__WATCOMC__) # define ALIGN16(type, array) /* Watcom does not support this */ |