mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-18 19:10:11 +08:00
16 lines
332 B
C++
16 lines
332 B
C++
#include <toml11/context.hpp>
|
|
#include <toml11/types.hpp>
|
|
|
|
#if ! defined(TOML11_COMPILE_SOURCES)
|
|
#error "Define `TOML11_COMPILE_SOURCES` before compiling source code!"
|
|
#endif
|
|
|
|
namespace toml
|
|
{
|
|
namespace detail
|
|
{
|
|
template class context<::toml::type_config>;
|
|
template class context<::toml::ordered_type_config>;
|
|
} // detail
|
|
} // toml
|