summaryrefslogtreecommitdiff
path: root/boost/spirit/home/x3/operator/plus.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/x3/operator/plus.hpp')
-rw-r--r--boost/spirit/home/x3/operator/plus.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/boost/spirit/home/x3/operator/plus.hpp b/boost/spirit/home/x3/operator/plus.hpp
index 32c7dbfffb..152731e622 100644
--- a/boost/spirit/home/x3/operator/plus.hpp
+++ b/boost/spirit/home/x3/operator/plus.hpp
@@ -8,10 +8,6 @@
#if !defined(SPIRIT_PLUS_MARCH_13_2007_0127PM)
#define SPIRIT_PLUS_MARCH_13_2007_0127PM
-#if defined(_MSC_VER)
-#pragma once
-#endif
-
#include <boost/spirit/home/x3/core/parser.hpp>
#include <boost/spirit/home/x3/support/traits/container_traits.hpp>
#include <boost/spirit/home/x3/support/traits/attribute_of.hpp>
@@ -48,7 +44,7 @@ namespace boost { namespace spirit { namespace x3
inline plus<typename extension::as_parser<Subject>::value_type>
operator+(Subject const& subject)
{
- return {as_parser(subject)};
+ return { as_parser(subject) };
}
}}}