summaryrefslogtreecommitdiff
path: root/boost/spirit/home/x3/operator/and_predicate.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/x3/operator/and_predicate.hpp')
-rw-r--r--boost/spirit/home/x3/operator/and_predicate.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/boost/spirit/home/x3/operator/and_predicate.hpp b/boost/spirit/home/x3/operator/and_predicate.hpp
index e0892cd8cf..1d650f7521 100644
--- a/boost/spirit/home/x3/operator/and_predicate.hpp
+++ b/boost/spirit/home/x3/operator/and_predicate.hpp
@@ -7,10 +7,6 @@
#if !defined(SPIRIT_AND_PREDICATE_MARCH_23_2007_0617PM)
#define SPIRIT_AND_PREDICATE_MARCH_23_2007_0617PM
-#if defined(_MSC_VER)
-#pragma once
-#endif
-
#include <boost/spirit/home/x3/core/parser.hpp>
namespace boost { namespace spirit { namespace x3
@@ -40,7 +36,7 @@ namespace boost { namespace spirit { namespace x3
inline and_predicate<typename extension::as_parser<Subject>::value_type>
operator&(Subject const& subject)
{
- return {as_parser(subject)};
+ return { as_parser(subject) };
}
}}}