From 5bab020df3e9961e8396e4cfedc72df2937589d5 Mon Sep 17 00:00:00 2001 From: Jan Niklas Hasse Date: Tue, 29 Oct 2024 21:20:00 +0100 Subject: [PATCH] Fix boost::ut::operator""_test on MSVC --- src/unittest/ColorTest.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/unittest/ColorTest.cpp b/src/unittest/ColorTest.cpp index e2024a85..24b2e8ad 100644 --- a/src/unittest/ColorTest.cpp +++ b/src/unittest/ColorTest.cpp @@ -8,9 +8,7 @@ namespace { boost::ut::suite _ = [] { - using boost::ut::expect; - using boost::ut::eq; - using boost::ut::operator""_test; + using namespace boost::ut; // NOLINT "Color"_test = [] { const auto a = 0x68da4f_rgb; const auto b = jngl::Color(0x68, 0xda, 0x4f);