From 9e9823a8dc53eccab639cd8c975875d1158b9eb0 Mon Sep 17 00:00:00 2001 From: BlackMATov Date: Thu, 5 Sep 2024 09:04:03 +0700 Subject: [PATCH] fix gcc/clang tests compilation --- develop/untests/meta_utilities/value_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop/untests/meta_utilities/value_tests.cpp b/develop/untests/meta_utilities/value_tests.cpp index 1e33c7b..4ee287e 100644 --- a/develop/untests/meta_utilities/value_tests.cpp +++ b/develop/untests/meta_utilities/value_tests.cpp @@ -542,7 +542,7 @@ TEST_CASE("meta/meta_utilities/value") { using ref_t = std::reference_wrapper>; using cref_t = std::reference_wrapper>; - std::unique_ptr u = std::make_unique(42); + std::unique_ptr u = std::make_unique(42); CHECK(meta::uvalue{ref_t{u}}.has_copy_op()); CHECK(meta::uvalue{cref_t{u}}.has_copy_op()); meta::uvalue v1 = meta::uvalue{ref_t{u}}.copy();