From f635b51e3f8e95868210edfc66fdbd8e475710f5 Mon Sep 17 00:00:00 2001 From: Clang Robot Date: Sat, 2 May 2026 20:53:43 +0000 Subject: [PATCH] :art: Committing clang-format changes --- unittests/compiled_tests.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/unittests/compiled_tests.cpp b/unittests/compiled_tests.cpp index abbc4240..c8a7da40 100644 --- a/unittests/compiled_tests.cpp +++ b/unittests/compiled_tests.cpp @@ -584,9 +584,15 @@ TEST_CASE("Utility_Test utility class wrapper") { ///// Issue 612: fun(&overloaded) should work for free and member function overloads namespace issue_612 { - std::string free_overload(int) { return "int"; } - std::string free_overload(double) { return "double"; } - std::string free_overload(const std::string &, bool) { return "string,bool"; } + std::string free_overload(int) { + return "int"; + } + std::string free_overload(double) { + return "double"; + } + std::string free_overload(const std::string &, bool) { + return "string,bool"; + } class Issue_612_Class { public: