From: Thomas Markwalder Date: Fri, 14 Feb 2020 16:14:03 +0000 (-0500) Subject: [#1121] Addressed review comment X-Git-Tag: Kea-1.7.5~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1bfde5a6c2fe4454d87009e8c405738d31c4e42;p=thirdparty%2Fkea.git [#1121] Addressed review comment Minor cleanup --- diff --git a/src/lib/asiolink/io_address.h b/src/lib/asiolink/io_address.h index f99ba365c2..03286e4f00 100644 --- a/src/lib/asiolink/io_address.h +++ b/src/lib/asiolink/io_address.h @@ -187,7 +187,6 @@ public: /// \brief Checks if one address is smaller than the other /// /// \param other Address to compare against. - /// bool operator<(const IOAddress& other) const { return (asio_address_ < other.asio_address_); } @@ -195,7 +194,6 @@ public: /// \brief Checks if one address is smaller or equal than the other /// /// \param other Address to compare against. - /// bool operator<=(const IOAddress& other) const { return (asio_address_ <= other.asio_address_); }