/usr/include/boost/metaparse
NameSizeModeActions
error/-0755rm
util/-0755rm
v1/-0755rm
accept.hpp4180644editdlrm
accept_tag.hpp4340644editdlrm
accept_when.hpp4380644editdlrm
alphanum.hpp4260644editdlrm
always.hpp4180644editdlrm
always_c.hpp4260644editdlrm
build_parser.hpp4420644editdlrm
change_error_message.hpp4760644editdlrm
config.hpp14450644editdlrm
debug_parsing_error.hpp4710644editdlrm
define_error.hpp5300644editdlrm
digit.hpp4140644editdlrm
digit_val.hpp4300644editdlrm
empty.hpp4140644editdlrm
entire_input.hpp4420644editdlrm
except.hpp4180644editdlrm
fail.hpp4100644editdlrm
fail_at_first_char_expected.hpp5020644editdlrm
fail_tag.hpp4270644editdlrm
first_of.hpp4260644editdlrm
foldl.hpp4140644editdlrm
foldl1.hpp4180644editdlrm
foldl_reject_incomplete.hpp4860644editdlrm
foldl_reject_incomplete1.hpp4900644editdlrm
foldl_reject_incomplete_start_with_parser.hpp5580644editdlrm
foldl_start_with_parser.hpp4860644editdlrm
foldr.hpp4130644editdlrm
foldr1.hpp4180644editdlrm
foldr_reject_incomplete.hpp4860644editdlrm
foldr_reject_incomplete1.hpp4900644editdlrm
foldr_start_with_parser.hpp4860644editdlrm
get_col.hpp4240644editdlrm
get_line.hpp4280644editdlrm
get_message.hpp4400644editdlrm
get_position.hpp4440644editdlrm
get_prev_char.hpp4480644editdlrm
get_remaining.hpp4480644editdlrm
get_result.hpp4360644editdlrm
grammar.hpp4210644editdlrm
if_.hpp4060644editdlrm
int_.hpp4080644editdlrm
is_error.hpp4260644editdlrm
iterate.hpp4220644editdlrm
iterate_c.hpp4300644editdlrm
keyword.hpp4220644editdlrm
last_of.hpp4220644editdlrm
letter.hpp4180644editdlrm
limit_one_char_except_size.hpp4590644editdlrm
limit_one_of_size.hpp4220644editdlrm
limit_sequence_size.hpp4290644editdlrm
limit_string_size.hpp4220644editdlrm
lit.hpp4070644editdlrm
lit_c.hpp4150644editdlrm
look_ahead.hpp4350644editdlrm
middle_of.hpp4340644editdlrm
next_char.hpp4320644editdlrm
next_line.hpp4320644editdlrm
nth_of.hpp4180644editdlrm
nth_of_c.hpp4260644editdlrm
one_char.hpp4270644editdlrm
one_char_except.hpp4540644editdlrm
one_char_except_c.hpp4620644editdlrm
one_of.hpp4180644editdlrm
one_of_c.hpp4260644editdlrm
optional.hpp4260644editdlrm
range.hpp4140644editdlrm
range_c.hpp4220644editdlrm
reject.hpp4180644editdlrm
repeated.hpp4260644editdlrm
repeated1.hpp4300644editdlrm
repeated_one_of.hpp4540644editdlrm
repeated_one_of1.hpp4580644editdlrm
repeated_reject_incomplete.hpp4980644editdlrm
repeated_reject_incomplete1.hpp5020644editdlrm
return_.hpp4220644editdlrm
sequence.hpp4260644editdlrm
sequence_apply.hpp8500644editdlrm
source_position.hpp4560644editdlrm
source_position_tag.hpp4700644editdlrm
space.hpp4150644editdlrm
spaces.hpp4180644editdlrm
start.hpp4160644editdlrm
string.hpp6790644editdlrm
string_tag.hpp4340644editdlrm
token.hpp4140644editdlrm
transform.hpp4300644editdlrm
transform_error.hpp4550644editdlrm
transform_error_message.hpp4870644editdlrm
unless_error.hpp4520644editdlrm
version.hpp4100644editdlrm
Edit: /usr/include/boost/metaparse/config.hpp (1445B)
#ifndef BOOST_METAPARSE_CONFIG_HPP #define BOOST_METAPARSE_CONFIG_HPP // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include /* * Compiler workarounds */ // BOOST_NO_CXX11_CONSTEXPR is not defined in gcc 4.6 #if \ defined BOOST_NO_CXX11_CONSTEXPR || defined BOOST_NO_CONSTEXPR || ( \ !defined __clang__ && defined __GNUC__ \ && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7)) \ ) # define BOOST_NO_CONSTEXPR_C_STR #endif /* * C++ standard to use */ // Allow overriding this #ifndef BOOST_METAPARSE_STD // special-case MSCV >= 1900 as its constexpr support is good enough for // Metaparse # if \ !defined BOOST_NO_CXX11_VARIADIC_TEMPLATES \ && !defined BOOST_NO_VARIADIC_TEMPLATES \ && ( \ (!defined BOOST_NO_CONSTEXPR && !defined BOOST_NO_CXX11_CONSTEXPR) \ || (defined _MSC_VER && _MSC_VER >= 1900) \ ) \ && (!defined BOOST_GCC || BOOST_GCC >= 40700) # if !defined BOOST_NO_CXX14_CONSTEXPR # define BOOST_METAPARSE_STD 2014 # else # define BOOST_METAPARSE_STD 2011 # endif # else # define BOOST_METAPARSE_STD 1998 # endif #endif /* * Metaparse config */ #if BOOST_METAPARSE_STD >= 2011 # define BOOST_METAPARSE_VARIADIC_STRING #endif #endif