summaryrefslogtreecommitdiff
path: root/boost/spirit/home/x3/directive/raw.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/x3/directive/raw.hpp')
-rw-r--r--boost/spirit/home/x3/directive/raw.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/spirit/home/x3/directive/raw.hpp b/boost/spirit/home/x3/directive/raw.hpp
index e6bcd9a3a1..8432e13888 100644
--- a/boost/spirit/home/x3/directive/raw.hpp
+++ b/boost/spirit/home/x3/directive/raw.hpp
@@ -60,11 +60,11 @@ namespace boost { namespace spirit { namespace x3
raw_directive<typename extension::as_parser<Subject>::value_type>
operator[](Subject const& subject) const
{
- return {as_parser(subject)};
+ return { as_parser(subject) };
}
};
- raw_gen const raw = raw_gen();
+ auto const raw = raw_gen{};
}}}
#endif