summaryrefslogtreecommitdiff
path: root/boost/spirit/home/x3/operator/optional.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/x3/operator/optional.hpp')
-rw-r--r--boost/spirit/home/x3/operator/optional.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/boost/spirit/home/x3/operator/optional.hpp b/boost/spirit/home/x3/operator/optional.hpp
index 16432f89d1..a40228849a 100644
--- a/boost/spirit/home/x3/operator/optional.hpp
+++ b/boost/spirit/home/x3/operator/optional.hpp
@@ -8,10 +8,6 @@
#if !defined(SPIRIT_OPTIONAL_MARCH_23_2007_1117PM)
#define SPIRIT_OPTIONAL_MARCH_23_2007_1117PM
-#if defined(_MSC_VER)
-#pragma once
-#endif
-
#include <boost/spirit/home/x3/core/proxy.hpp>
#include <boost/spirit/home/x3/core/detail/parse_into_container.hpp>
#include <boost/spirit/home/x3/support/traits/attribute_of.hpp>
@@ -71,7 +67,7 @@ namespace boost { namespace spirit { namespace x3
inline optional<typename extension::as_parser<Subject>::value_type>
operator-(Subject const& subject)
{
- return {as_parser(subject)};
+ return { as_parser(subject) };
}
}}}