diff options
author | José Fonseca <[email protected]> | 2008-06-24 14:02:24 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-06-24 14:02:24 +0900 |
commit | b6f053739f66c1c88db12df4690051c0a54ff0f7 (patch) | |
tree | 0b4e462d0adc4099b88a8652bb8834414af9c131 /src/mesa/main/imports.h | |
parent | 4802a687a7050b7b5dd3683ae43fd4f26c4a718e (diff) |
mesa: Replace deprecated __MSC__ macro.
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index ebdfc452a7a..813be52e4e0 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -332,7 +332,7 @@ static INLINE int iround(float f) return r; } #define IROUND(x) iround(x) -#elif defined(USE_X86_ASM) && defined(__MSC__) && defined(__WIN32__) +#elif defined(USE_X86_ASM) && defined(_MSC_VER) static INLINE int iround(float f) { int r; |