/usr/include/boost/metaparse/v1/error
NameSizeModeActions
digit_expected.hpp5780644editdlrm
end_of_input_expected.hpp6240644editdlrm
expected_to_fail.hpp6240644editdlrm
index_out_of_range.hpp9010644editdlrm
letter_expected.hpp5820644editdlrm
literal_expected.hpp7150644editdlrm
none_of_the_expected_cases_found.hpp6800644editdlrm
unexpected_character.hpp6320644editdlrm
unexpected_end_of_input.hpp6450644editdlrm
unpaired.hpp11270644editdlrm
whitespace_expected.hpp6290644editdlrm
Edit: /usr/include/boost/metaparse/v1/error/index_out_of_range.hpp (901B)
#ifndef BOOST_METAPARSE_V1_ERROR_INDEX_OUT_OF_RANGE_HPP #define BOOST_METAPARSE_V1_ERROR_INDEX_OUT_OF_RANGE_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 #include #include namespace boost { namespace metaparse { namespace v1 { namespace error { template struct index_out_of_range { typedef index_out_of_range type; static std::string get_value() { std::ostringstream s; s << "index (" << N << ") out of range [" << From << "-" << To << "]"; return s.str(); } }; } } } } #endif