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
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2020-01-15 12:13:02 +0000
commitcd67b1dcb8f1eca8c0c7cecc6f4de27c7efe41d5 (patch)
treefa36bf70769791e1d9b3a9fa5b6baf6701b1e267 /src/cuckoocache.h
parentb8101fb7ac4bfa0e5c0ee2459b24bddaf59fe7c4 (diff)
downloadbitcoin-cd67b1dcb8f1eca8c0c7cecc6f4de27c7efe41d5.tar.xz
Use correct C++11 header for std::swap()
Github-Pull: #17634 Rebased-From: 98fbd1cdffaa69357091cc67e959ac21119dfa16
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 4d0b094fa2..16a994393e 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>