Revert "Remove obsolete MSVC check from pragma guard"

This reverts commit b7ee788845.
This commit is contained in:
Peter Dimov
2014-02-12 16:57:45 +02:00
parent 208bfd78f9
commit 0337743c8c
2 changed files with 2 additions and 2 deletions

View File

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

View File

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