aboutsummaryrefslogtreecommitdiff
path: root/src/cuckoocache.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-29 21:18:24 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-29 21:23:25 +0200
commit98fbd1cdffaa69357091cc67e959ac21119dfa16 (patch)
treec96705619b933d9126b2f94cef8be461b1950ef6 /src/cuckoocache.h
parentb66861e2e5e8a49e11e7489cf22c3007bc7082cc (diff)
downloadbitcoin-98fbd1cdffaa69357091cc67e959ac21119dfa16.tar.xz
Use correct C++11 header for std::swap()
Diffstat (limited to 'src/cuckoocache.h')
-rw-r--r--src/cuckoocache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuckoocache.h b/src/cuckoocache.h
index 674f47b956..4ad5818cdc 100644
--- a/src/cuckoocache.h
+++ b/src/cuckoocache.h
@@ -6,11 +6,11 @@
#define BITCOIN_CUCKOOCACHE_H
#include <array>
-#include <algorithm>
#include <atomic>
-#include <cstring>
#include <cmath>
+#include <cstring>
#include <memory>
+#include <utility>
#include <vector>