summaryrefslogtreecommitdiff
path: root/boost/spirit/home/x3/operator/kleene.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/x3/operator/kleene.hpp')
-rw-r--r--boost/spirit/home/x3/operator/kleene.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/boost/spirit/home/x3/operator/kleene.hpp b/boost/spirit/home/x3/operator/kleene.hpp
index 7e02bf4a02..b0fb5a1df1 100644
--- a/boost/spirit/home/x3/operator/kleene.hpp
+++ b/boost/spirit/home/x3/operator/kleene.hpp
@@ -8,10 +8,6 @@
#if !defined(SPIRIT_KLEENE_JANUARY_07_2007_0818AM)
#define SPIRIT_KLEENE_JANUARY_07_2007_0818AM
-#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>
@@ -44,7 +40,7 @@ namespace boost { namespace spirit { namespace x3
inline kleene<typename extension::as_parser<Subject>::value_type>
operator*(Subject const& subject)
{
- return {as_parser(subject)};
+ return { as_parser(subject) };
}
}}}