From 4025cdc877eb7d8d5d773a49c6ebd53866f42ad1 Mon Sep 17 00:00:00 2001 From: vector-of-bool Date: Fri, 29 Mar 2024 15:28:07 -0600 Subject: [PATCH] Missing ctor definition --- src/neo/variant.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/neo/variant.test.cpp b/src/neo/variant.test.cpp index 7b4e375..121ea06 100644 --- a/src/neo/variant.test.cpp +++ b/src/neo/variant.test.cpp @@ -393,7 +393,7 @@ TEST_CASE("Get T from neo::variant<>") { } struct not_default_constructible { - not_default_constructible(int); + not_default_constructible(int) {} }; TEST_CASE("Not-default-constructible") {