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