From d7c59926dd394d91dd5b4882f90f20c0ed7fec82 Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Sat, 8 Oct 2011 20:43:47 +0200 Subject: Fix header sizes for 64 bit machines Signed-off-by: Henrik Rydberg --- src/lang/token.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/lang/token.h') diff --git a/src/lang/token.h b/src/lang/token.h index bf32820..e2da142 100644 --- a/src/lang/token.h +++ b/src/lang/token.h @@ -66,7 +66,7 @@ public: static void* operator new(size_t n); static void operator delete(void* p); private: - static uniheap<32> tree; + static uniheap<48> tree; }; /////////////////////////////////////////////////////////////////// @@ -80,7 +80,7 @@ public: static void* operator new(size_t n); static void operator delete(void* p); private: - static uniheap<44> tree; + static uniheap<64> tree; }; /////////////////////////////////////////////////////////////////// @@ -94,7 +94,7 @@ public: static void* operator new(size_t n); static void operator delete(void* p); private: - static uniheap<96> tree; + static uniheap<136> tree; }; /////////////////////////////////////////////////////////////////// @@ -108,7 +108,7 @@ public: static void* operator new(size_t n); static void operator delete(void* p); private: - static uniheap<44> tree; + static uniheap<64> tree; }; /////////////////////////////////////////////////////////////////// @@ -122,7 +122,7 @@ public: static void* operator new(size_t n); static void operator delete(void* p); private: - static uniheap<80> tree; + static uniheap<128> tree; }; /////////////////////////////////////////////////////////////////// @@ -136,7 +136,7 @@ public: static void* operator new(size_t n); static void operator delete(void* p); private: - static uniheap<88> tree; + static uniheap<136> tree; }; /////////////////////////////////////////////////////////////////// @@ -150,7 +150,7 @@ public: static void* operator new(size_t n); static void operator delete(void* p); private: - static uniheap<48> tree; + static uniheap<72> tree; }; /////////////////////////////////////////////////////////////////// -- cgit v1.2.3