From b268effd886c9ea45f8a6f37f8d62b4bb045ad37 Mon Sep 17 00:00:00 2001 From: Nehal Patel Date: Sat, 18 Nov 2023 23:17:39 -0800 Subject: [PATCH] Fix 4629 compile warning in endpoint.hpp --- src/endpoint.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/endpoint.hpp b/src/endpoint.hpp index 8727ae5c..3bfa2415 100644 --- a/src/endpoint.hpp +++ b/src/endpoint.hpp @@ -29,7 +29,7 @@ struct endpoint_uri_pair_t return local_type == endpoint_type_bind ? local : remote; } - const bool clash () const { return local == remote; } + bool clash () const { return local == remote; } std::string local, remote; endpoint_type_t local_type;