mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 11:26:26 +00:00
5e683e9a73
also: - added tests for unicode functions - changed `TOML_LIKELY` semantics to work with gcc-style intrinsics - greatly improved unicode-related codegen - parser refactoring
28 lines
1.1 KiB
C++
28 lines
1.1 KiB
C++
#include "tests.h"
|
|
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const int&);
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const unsigned int&);
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const bool&);
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const float&);
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const double&);
|
|
template void parse_expected_value(std::string_view, uint32_t, std::string_view, const toml::string_view&);
|
|
|
|
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>&);
|
|
}
|
|
}
|
|
|
|
|