diff options
author | fanquake <fanquake@gmail.com> | 2020-01-22 17:11:51 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-01-22 17:25:15 +0800 |
commit | e45463a06abef44e9fff0f9bb19435283fd568df (patch) | |
tree | e57f0d46af865f6d961f33d91c141ddbedf1f179 | |
parent | 742f84d0de79fcaf17578f9c3376be248c3259bc (diff) | |
parent | a5a2654bbc43b5c208418872e5d4c0acbadda5de (diff) |
Merge #17980: test: add missing #include to fix compiler errors
a5a2654bbc43b5c208418872e5d4c0acbadda5de test: add missing #include to fix compiler errors (Karl-Johan Alm)
Pull request description:
I believe this fixes AppVeyor errors in master. Will close if that is not the case.
Closes #17976
ACKs for top commit:
fanquake:
ACK a5a2654bbc43b5c208418872e5d4c0acbadda5de - glad the fix turned out to be this simple.
Tree-SHA512: 8fed8c2050d0f435e7ed6db1c2927d5daccc3540c6cf9e57e644d0931a740359550a5270201c893f40200960101f11cd039d807d4ed0190f1e0c674f86fd7290
-rw-r--r-- | src/test/cuckoocache_tests.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/cuckoocache_tests.cpp b/src/test/cuckoocache_tests.cpp index 119d4b3295..6be24c0845 100644 --- a/src/test/cuckoocache_tests.cpp +++ b/src/test/cuckoocache_tests.cpp @@ -7,6 +7,7 @@ #include <test/util/setup_common.h> #include <random.h> #include <thread> +#include <deque> /** Test Suite for CuckooCache * |