Skip to content

Commit 3738a53

Browse files
authored
Merge pull request dogecoin#3490 from patricklodder/1.15.0-const-comparator-operator
net: make IteratorComparator's operator const
2 parents aefb848 + bcdcf24 commit 3738a53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net_processing.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ std::atomic<int64_t> nTimeBestReceived(0); // Used only to inform the wallet of
4343
struct IteratorComparator
4444
{
4545
template<typename I>
46-
bool operator()(const I& a, const I& b)
46+
bool operator()(const I& a, const I& b) const
4747
{
4848
return &(*a) < &(*b);
4949
}

0 commit comments

Comments
 (0)