From 84ac9bcf1dbbdeeee11bf70d4a349f31a3a2fdea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Tue, 25 Feb 2025 21:19:21 -0500 Subject: [PATCH] tests: fix build error with new clang versions Change-Id: I6053e24e501513fa444af08367d423b4323763c0 --- tests/connectionManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/connectionManager.cpp b/tests/connectionManager.cpp index 58aecfb..9c87c5e 100644 --- a/tests/connectionManager.cpp +++ b/tests/connectionManager.cpp @@ -977,7 +977,7 @@ ConnectionManagerTest::testMultiChannelShutdown() toClose = sockets.extract(sockets.begin()); sockets.clear(); } - fmt::print("Closing connections {} - {}\n", i, fmt::ptr(toClose.value())); + fmt::print("Closing connections {} - {}\n", i, fmt::ptr(toClose.value().get())); toClose.value()->shutdown(); } } -- GitLab