allocators: split allocators and pagelocker

Pagelocker is only needed for secure (usually wallet) operations, so don't make
the zero-after-free allocator depend on it.
This commit is contained in:
Cory Fields
2015-01-22 15:02:44 -05:00
committed by Wladimir J. van der Laan
parent c7abfa595d
commit d7d187e8a4
12 changed files with 129 additions and 102 deletions

View File

@@ -6,8 +6,8 @@
#ifndef BITCOIN_KEY_H
#define BITCOIN_KEY_H
#include "allocators.h"
#include "serialize.h"
#include "support/allocators/secure.h"
#include "uint256.h"
#include <stdexcept>