From da136cd52f0d2af46a3e5ce9ff7552ba52969233 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Thu, 22 Apr 2021 13:14:10 +0200 Subject: [PATCH] Build fix in unit test --- test/unit/int_conv_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/int_conv_test.cpp b/test/unit/int_conv_test.cpp index 6145328..eed46a1 100644 --- a/test/unit/int_conv_test.cpp +++ b/test/unit/int_conv_test.cpp @@ -31,13 +31,13 @@ template using int_info_2 = dhandy::implem::int_info; namespace { template void AryConversionTestHelper (const std::string_view& s, T expected) { - using AryConversion = dhandy::implem::AryConversion>; + using AryConversion = dhandy::implem::AryConversion, false>; CHECK(AryConversion::from_ary(s.data(), s.data() + s.size()) == expected); } template void AryConversionTestHelperUp (const std::string_view& s, T expected) { - using AryConversion = dhandy::implem::AryConversion>; + using AryConversion = dhandy::implem::AryConversion, false>; CHECK(AryConversion::from_ary(s.data(), s.data() + s.size()) == expected); } } //unnamed namespace