update boost on linux
This commit is contained in:
@@ -70,7 +70,7 @@ namespace boost { namespace spirit { namespace x3
|
||||
|
||||
template <typename Iterator, typename Context>
|
||||
bool parse_main(Iterator& first, Iterator const& last
|
||||
, Context& context, T& attr) const
|
||||
, Context const& context, T& attr) const
|
||||
{
|
||||
x3::skip_over(first, last, context);
|
||||
return (n_ && policies.parse_true(first, last, attr, get_case_compare<encoding>(context)))
|
||||
@@ -79,7 +79,7 @@ namespace boost { namespace spirit { namespace x3
|
||||
|
||||
template <typename Iterator, typename Context>
|
||||
bool parse(Iterator& first, Iterator const& last
|
||||
, Context& context, unused_type, T& attr) const
|
||||
, Context const& context, unused_type, T& attr) const
|
||||
{
|
||||
return parse_main(first, last, context, attr);
|
||||
}
|
||||
@@ -114,6 +114,7 @@ namespace boost { namespace spirit { namespace x3
|
||||
false_type const false_ = { false };
|
||||
}
|
||||
|
||||
#ifndef BOOST_SPIRIT_NO_STANDARD_WIDE
|
||||
namespace standard_wide
|
||||
{
|
||||
typedef bool_parser<bool, char_encoding::standard_wide> bool_type;
|
||||
@@ -125,6 +126,7 @@ namespace boost { namespace spirit { namespace x3
|
||||
typedef literal_bool_parser<bool, char_encoding::standard_wide> false_type;
|
||||
false_type const false_ = { false };
|
||||
}
|
||||
#endif
|
||||
|
||||
namespace ascii
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user