/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/unpaired.hpp (1127B)
#ifndef BOOST_METAPARSE_V1_ERROR_UNPAIRED_HPP #define BOOST_METAPARSE_V1_ERROR_UNPAIRED_HPP // Copyright Abel Sinkovics (abel@sinkovics.hu) 2015. // 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 #include namespace boost { namespace metaparse { namespace v1 { namespace error { template struct unpaired { typedef unpaired type; static std::string get_value() { std::ostringstream s; s << Msg::get_value() << " (see " << Line << ":" << Col << ")"; return s.str(); } }; template struct unpaired { typedef unpaired type; template struct apply : unpaired {}; }; } } } } #endif