🎨 Committing clang-format changes

This commit is contained in:
Clang Robot 2026-05-02 20:53:43 +00:00
parent 46cf4cdef0
commit f635b51e3f

View File

@ -584,9 +584,15 @@ TEST_CASE("Utility_Test utility class wrapper") {
///// Issue 612: fun<Sig>(&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: