diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2018-04-02 18:31:40 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2018-06-13 16:07:44 +0800 |
commit | 18b0c69e2fc9f9d5cd56659abab467c2c6826be2 (patch) | |
tree | 22d3a44cc42c38480dc4247e8fdcf8197b8e540c /src/test/allocator_tests.cpp | |
parent | 4ea3e8ef070417ccc22007407d78fa0a41949bee (diff) |
Bugfix: Include <memory> for std::unique_ptr
GitHub-Pull: #12859
Rebased-From: a5bca13
Diffstat (limited to 'src/test/allocator_tests.cpp')
-rw-r--r-- | src/test/allocator_tests.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/allocator_tests.cpp b/src/test/allocator_tests.cpp index c177f0bf00..24cd88c7a7 100644 --- a/src/test/allocator_tests.cpp +++ b/src/test/allocator_tests.cpp @@ -7,6 +7,8 @@ #include <support/allocators/secure.h> #include <test/test_bitcoin.h> +#include <memory> + #include <boost/test/unit_test.hpp> BOOST_FIXTURE_TEST_SUITE(allocator_tests, BasicTestingSetup) |