diff options
| author | Luke Dashjr <[email protected]> | 2018-04-02 18:31:40 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2018-04-02 18:31:52 +0000 |
| commit | a5bca13095aa835d61f872081fc0cc2fa53552f3 (patch) | |
| tree | 3f4ce332a537159a48f4a37da47599590034baa5 /src/test/allocator_tests.cpp | |
| parent | Merge #12293: [rpc] Mention that HD is enabled if hdmasterkeyid is present (diff) | |
| download | discoin-a5bca13095aa835d61f872081fc0cc2fa53552f3.tar.xz discoin-a5bca13095aa835d61f872081fc0cc2fa53552f3.zip | |
Bugfix: Include <memory> for std::unique_ptr
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 c177f0bf0..24cd88c7a 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) |