mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 11:26:26 +00:00
5ca6b29cb9
also: - fixed some parsing and printing ops being locale-dependent (fixes #19) - fixed pkgconfig subdir being wrong (fixes #23) - fixed some parsing errors at EOF when `TOML_EXCEPTIONS = 0` - fixed some unreferenced variable warnings on older compilers - fixed some 'maybe-uninitialized' false-positives on GCC9 - added debug/release awareness to CI tests - added locale awareness to catch test runner
28 lines
1.2 KiB
C++
28 lines
1.2 KiB
C++
#include "tests.h"
|
|
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const int&) noexcept;
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const unsigned int&) noexcept;
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const bool&) noexcept;
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const float&) noexcept;
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const double&) noexcept;
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const toml::string_view&) noexcept;
|
|
|
|
namespace std
|
|
{
|
|
template class unique_ptr<const Catch::IExceptionTranslator>;
|
|
}
|
|
namespace Catch
|
|
{
|
|
template struct StringMaker<node_view<node>>;
|
|
template struct StringMaker<node_view<const node>>;
|
|
template ReusableStringStream& ReusableStringStream::operator << (toml::node_view<toml::node> const&);
|
|
template ReusableStringStream& ReusableStringStream::operator << (toml::node_view<const toml::node> const&);
|
|
namespace Detail
|
|
{
|
|
template std::string stringify(const node_view<node>&);
|
|
template std::string stringify(const node_view<const node>&);
|
|
}
|
|
}
|
|
|
|
|