diff options
author | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
commit | d570836295decdb827b4f95d75ebf2d8d9232b9b (patch) | |
tree | 859f3511dc3166e935b9c3438f6beee050816001 /library/cpp/ipmath/ipmath.cpp | |
parent | 91497eb27263e2feb35b53a90773e7207752a2ec (diff) | |
download | ydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz |
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/ipmath/ipmath.cpp')
-rw-r--r-- | library/cpp/ipmath/ipmath.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/ipmath/ipmath.cpp b/library/cpp/ipmath/ipmath.cpp index f9e56c337c2..110652b861e 100644 --- a/library/cpp/ipmath/ipmath.cpp +++ b/library/cpp/ipmath/ipmath.cpp @@ -319,11 +319,11 @@ TIpAddressRange::TIterator TIpAddressRange::End() const { TIpAddressRange::TIpAddressRangeBuilder TIpAddressRange::From(TIpv6Address from) { return TIpAddressRangeBuilder{from}; -}; +} TIpAddressRange::TIpAddressRangeBuilder TIpAddressRange::From(const TString& from) { return TIpAddressRangeBuilder{from}; -}; +} bool operator==(const TIpAddressRange& lhs, const TIpAddressRange& rhs) { return lhs.Start_ == rhs.Start_ && lhs.End_ == rhs.End_; |