2020-01-04 16:21:38 +02:00
|
|
|
#include "tests.h"
|
|
|
|
|
2020-06-19 14:17:52 +03:00
|
|
|
template bool parse_expected_value(std::string_view, uint32_t, std::string_view, const int&);
|
|
|
|
template bool parse_expected_value(std::string_view, uint32_t, std::string_view, const unsigned int&);
|
|
|
|
template bool parse_expected_value(std::string_view, uint32_t, std::string_view, const bool&);
|
|
|
|
template bool parse_expected_value(std::string_view, uint32_t, std::string_view, const float&);
|
|
|
|
template bool parse_expected_value(std::string_view, uint32_t, std::string_view, const double&);
|
|
|
|
template bool parse_expected_value(std::string_view, uint32_t, std::string_view, const toml::string_view&);
|
2020-03-03 10:10:07 +02:00
|
|
|
|
2020-04-03 00:39:21 +03:00
|
|
|
namespace std
|
2020-03-03 10:10:07 +02:00
|
|
|
{
|
2020-04-03 00:39:21 +03:00
|
|
|
template class unique_ptr<const Catch::IExceptionTranslator>;
|
2020-03-03 10:10:07 +02:00
|
|
|
}
|
|
|
|
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>&);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-28 18:56:59 +02:00
|
|
|
|