aboutsummaryrefslogtreecommitdiff
path: root/src/net_processing.cpp
diff options
context:
space:
mode:
authorAaron Clauson <[email protected]>2017-11-10 07:06:49 +1100
committerAaron Clauson <[email protected]>2017-11-10 07:06:49 +1100
commitfbf327b13868861c2877c5754caf5a9816f2603c (patch)
treec8fe180d7a8ad74859dfcf28e0f4de96eb2ab4e7 /src/net_processing.cpp
parentMerge #11580: Do not send (potentially) invalid headers in response to gethea... (diff)
downloaddiscoin-fbf327b13868861c2877c5754caf5a9816f2603c.tar.xz
discoin-fbf327b13868861c2877c5754caf5a9816f2603c.zip
Minimal code changes to allow msvc compilation.
Diffstat (limited to 'src/net_processing.cpp')
-rw-r--r--src/net_processing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp
index 52387b32f..82b09f5f1 100644
--- a/src/net_processing.cpp
+++ b/src/net_processing.cpp
@@ -41,7 +41,7 @@ std::atomic<int64_t> nTimeBestReceived(0); // Used only to inform the wallet of
struct IteratorComparator
{
template<typename I>
- bool operator()(const I& a, const I& b)
+ bool operator()(const I& a, const I& b) const
{
return &(*a) < &(*b);
}