2
0
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:
Nikita Kniazev
2017-11-15 00:18:28 +03:00
parent 2641b567de
commit d3cc71002c
6 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@
// definition the place holder
namespace custom_generator
{
BOOST_SPIRIT_TERMINAL(columns);
BOOST_SPIRIT_TERMINAL(columns)
}
///////////////////////////////////////////////////////////////////////////////

View File

@@ -12,7 +12,7 @@
// definition the place holder
namespace custom_parser
{
BOOST_SPIRIT_TERMINAL(iter_pos);
BOOST_SPIRIT_TERMINAL(iter_pos)
}
///////////////////////////////////////////////////////////////////////////////

View File

@@ -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)
}}}}
///////////////////////////////////////////////////////////////////////////////

View File

@@ -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)
}}}}
///////////////////////////////////////////////////////////////////////////////

View File

@@ -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

View File

@@ -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