Remove obsolete MSVC check from pragma guard

git grep -h -B1 "^#\s*pragma once" | grep -v pragma | sort | uniq

is now clean.

[SVN r85952]
This commit is contained in:
Stephen Kelly
2013-09-26 13:02:51 +00:00
parent 41e2470d21
commit 589631a886
6 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
#if !defined(BOOST_DETAIL_CONTAINER_FWD_HPP) #if !defined(BOOST_DETAIL_CONTAINER_FWD_HPP)
#define BOOST_DETAIL_CONTAINER_FWD_HPP #define BOOST_DETAIL_CONTAINER_FWD_HPP
#if defined(_MSC_VER) && (_MSC_VER >= 1020) && \ #if defined(_MSC_VER) && \
!defined(BOOST_DETAIL_TEST_CONFIG_ONLY) !defined(BOOST_DETAIL_TEST_CONFIG_ONLY)
# 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) && (_MSC_VER >= 1020) #if defined(_MSC_VER)
# 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) && (_MSC_VER >= 1020) #if defined(_MSC_VER)
# pragma once # pragma once
#endif #endif

View File

@@ -1,7 +1,7 @@
#ifndef BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP_ #ifndef BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP_
#define BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP_ #define BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP_
#if (defined _MSC_VER) && (_MSC_VER >= 1200) #if defined(_MSC_VER)
# 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) && (_MSC_VER >= 1020) #if defined(_MSC_VER)
# pragma once # pragma once
#endif #endif

View File

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