aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-05-11 13:05:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-05-11 13:05:53 +0200
commit6076ad61be21ce79021b3e24e51e4f5ec49329cf (patch)
tree8752f772ce7b89271dee0e34ffdc95e31c77f2ba /examples
parent784fb061643781b4b68d3c996e931339ae85be2b (diff)
Use smaller memory pool
Diffstat (limited to 'examples')
-rw-r--r--examples/cxx/hybrid/allocator/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cxx/hybrid/allocator/driver.cxx b/examples/cxx/hybrid/allocator/driver.cxx
index 933784e..a3d91a8 100644
--- a/examples/cxx/hybrid/allocator/driver.cxx
+++ b/examples/cxx/hybrid/allocator/driver.cxx
@@ -74,7 +74,7 @@ main (int argc, char* argv[])
// Set up the memory pool.
//
- char pool[65536 * 2];
+ char pool[20480];
arena ar (pool, sizeof (pool));
xsde_arena = &ar;