mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
Fixed redundant semicolons
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
// definition the place holder
|
||||
namespace custom_generator
|
||||
{
|
||||
BOOST_SPIRIT_TERMINAL(columns);
|
||||
BOOST_SPIRIT_TERMINAL(columns)
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
// definition the place holder
|
||||
namespace custom_parser
|
||||
{
|
||||
BOOST_SPIRIT_TERMINAL(iter_pos);
|
||||
BOOST_SPIRIT_TERMINAL(iter_pos)
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
// definition the place holder
|
||||
namespace boost { namespace spirit { namespace repository { namespace qi
|
||||
{
|
||||
BOOST_SPIRIT_TERMINAL_EX(advance);
|
||||
BOOST_SPIRIT_TERMINAL_EX(advance)
|
||||
}}}}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
// definition the place holder
|
||||
namespace boost { namespace spirit { namespace repository { namespace qi
|
||||
{
|
||||
BOOST_SPIRIT_TERMINAL(iter_pos);
|
||||
BOOST_SPIRIT_TERMINAL(iter_pos)
|
||||
}}}}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace html
|
||||
struct confix_spec
|
||||
: spirit::result_of::terminal<repo::tag::confix(Prefix, Suffix)>
|
||||
{};
|
||||
};
|
||||
}
|
||||
|
||||
template <typename Prefix, typename Suffix>
|
||||
inline typename traits::confix_spec<Prefix, Suffix>::type
|
||||
|
||||
@@ -46,7 +46,7 @@ namespace distinct
|
||||
struct char_spec
|
||||
: spirit::result_of::terminal<spirit::tag::ascii::char_(String)>
|
||||
{};
|
||||
};
|
||||
}
|
||||
|
||||
// Define a helper function allowing to create a distinct() construct from
|
||||
// an arbitrary tail parser
|
||||
|
||||
Reference in New Issue
Block a user