From c09dbb1756ab8cb9323be4cc163e8c2cb838090e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Sun, 6 Sep 2020 01:33:47 -0400 Subject: [PATCH] test: add missing explicit specifier --- test/unit_test/static/custom_rep_min_req_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit_test/static/custom_rep_min_req_test.cpp b/test/unit_test/static/custom_rep_min_req_test.cpp index d9a12ce5..8f7783b8 100644 --- a/test/unit_test/static/custom_rep_min_req_test.cpp +++ b/test/unit_test/static/custom_rep_min_req_test.cpp @@ -65,7 +65,7 @@ template struct expl_constructible : scalar_ops> { T value_{}; expl_constructible() = default; - constexpr expl_constructible(T v) : value_(std::move(v)) {} + constexpr explicit expl_constructible(T v) : value_(std::move(v)) {} // no conversion to fundamental arithmetic types };