From f77b8e5c418ab71fc2e899eb7b6e5c364a78cc59 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Wed, 13 Jul 2022 07:47:57 +0100 Subject: [PATCH] Update unit-custom-integer.cpp --- tests/src/unit-custom-integer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/unit-custom-integer.cpp b/tests/src/unit-custom-integer.cpp index e5958eaef..eab965548 100644 --- a/tests/src/unit-custom-integer.cpp +++ b/tests/src/unit-custom-integer.cpp @@ -47,7 +47,7 @@ class wrapped_int // allow implicit conversions from anything that `T` allows conversions from template::value>::type> - wrapped_int(T2 val) : val(val) {} + wrapped_int(T2 val) : m_val(val) {} bool operator==(const wrapped_int& other) const {