#include #include #include #if ! defined(TOML11_COMPILE_SOURCES) #error "Define `TOML11_COMPILE_SOURCES` before compiling source code!" #endif namespace toml { namespace detail { template bool skip_whitespace (location& loc, const context&); template bool skip_empty_lines (location& loc, const context&); template void skip_comment_block (location& loc, const context&); template void skip_empty_or_comment_lines(location& loc, const context&); template void skip_string_like (location& loc, const context&); template void skip_array_like (location& loc, const context&); template void skip_inline_table_like (location& loc, const context&); template void skip_value (location& loc, const context&); template void skip_key_value_pair (location& loc, const context&); template void skip_until_next_table (location& loc, const context&); template bool skip_whitespace (location& loc, const context&); template bool skip_empty_lines (location& loc, const context&); template void skip_comment_block (location& loc, const context&); template void skip_empty_or_comment_lines(location& loc, const context&); template void skip_string_like (location& loc, const context&); template void skip_array_like (location& loc, const context&); template void skip_inline_table_like (location& loc, const context&); template void skip_value (location& loc, const context&); template void skip_key_value_pair (location& loc, const context&); template void skip_until_next_table (location& loc, const context&); } // detail } // toml