]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1121] Addressed review comment
authorThomas Markwalder <tmark@isc.org>
Fri, 14 Feb 2020 16:14:03 +0000 (11:14 -0500)
committerThomas Markwalder <tmark@isc.org>
Fri, 14 Feb 2020 16:14:03 +0000 (11:14 -0500)
    Minor cleanup

src/lib/asiolink/io_address.h

index f99ba365c2b4255326f50b5a59943f11fdfd15fc..03286e4f004310fd4619d8b98f0752951ec47d22 100644 (file)
@@ -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_);
     }