Fixed typo in __clang__ macro

This commit is contained in:
PKEuS 2013-10-27 13:40:10 +01:00
parent 9790e09e2d
commit f572f3dd81
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ int main(int argc, char* argv[])
// Warn about deprecated compilers
#ifdef __clang
#ifdef __clang__
# if ( __clang_major__ < 2 || ( __clang_major__ == 2 && __clang_minor__ < 9))
# warning "Using Clang 2.8 or earlier. Support for this version will be removed soon."
# endif