2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-18 14:22:09 +00:00

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 ef473de7bb
commit c853c803dd
7 changed files with 7 additions and 7 deletions

View File

@@ -12,7 +12,7 @@
//
/////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
#pragma once
#endif

View File

@@ -12,7 +12,7 @@
//
/////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
#pragma once
#endif

View File

@@ -12,7 +12,7 @@
//
/////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
#pragma once
#endif

View File

@@ -12,7 +12,7 @@
//
/////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
#pragma once
#endif

View File

@@ -12,7 +12,7 @@
//
/////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
#pragma once
#endif

View File

@@ -12,7 +12,7 @@
//
/////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
# pragma once
#endif

View File

@@ -12,7 +12,7 @@
//
/////////////////////////////////////////////////////////////////////////////
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
# pragma once
#endif