Revert "Remove obsolete MSVC check from pragma guard"

This reverts commit 1fd5883b345a3c230daaad8ee93af5bc8f3209d5.
This commit is contained in:
Peter Dimov 2013-12-11 00:13:48 +02:00
parent ad98ca9c3c
commit 244c343efe
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
// MS compatible compilers support #pragma once // MS compatible compilers support #pragma once
#if defined(_MSC_VER) #if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once # pragma once
#endif #endif

View File

@ -3,7 +3,7 @@
// MS compatible compilers support #pragma once // MS compatible compilers support #pragma once
#if defined(_MSC_VER) #if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once # pragma once
#endif #endif

View File

@ -3,7 +3,7 @@
// MS compatible compilers support #pragma once // MS compatible compilers support #pragma once
#if defined(_MSC_VER) #if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once # pragma once
#endif #endif