diff options
author | lloyd <[email protected]> | 2008-04-12 02:46:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-04-12 02:46:59 +0000 |
commit | 21669116db5ccb075d92a24af763f7b8c7a32976 (patch) | |
tree | afca213e9b0fd6ea87043df29c9e21074e19da03 /modules | |
parent | 04b702def2a883eada14a505955d6b369e9de88f (diff) |
Make the memory allocator's chunk size a compile time constant, via a
new build.h macro BOTAN_MEM_POOL_CHUNK_SIZE
Diffstat (limited to 'modules')
-rw-r--r-- | modules/alloc_mmap/mmap_mem.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/alloc_mmap/mmap_mem.h b/modules/alloc_mmap/mmap_mem.h index 315f55b2e..ddf999014 100644 --- a/modules/alloc_mmap/mmap_mem.h +++ b/modules/alloc_mmap/mmap_mem.h @@ -16,7 +16,6 @@ namespace Botan { class MemoryMapping_Allocator : public Pooling_Allocator { public: - MemoryMapping_Allocator() : Pooling_Allocator(64*1024, false) {} std::string type() const { return "mmap"; } private: void* alloc_block(u32bit); |