From 11ba5c112092d893471e93baeaa99f2c5dee8390 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 31 Jul 2022 07:23:30 +0200 Subject: [PATCH] :rotating_light: fix warning (#3634) --- tests/src/unit-alt-string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/unit-alt-string.cpp b/tests/src/unit-alt-string.cpp index 5ea4e998a..e29a897df 100644 --- a/tests/src/unit-alt-string.cpp +++ b/tests/src/unit-alt-string.cpp @@ -161,7 +161,7 @@ class alt_string private: std::string str_impl {}; - friend bool ::operator<(const char* /*op1*/, const alt_string& /*op2*/) noexcept; + friend bool operator<(const char* /*op1*/, const alt_string& /*op2*/) noexcept; }; void int_to_string(alt_string& target, std::size_t value)