Revert some unneeded changes for GCC 3.4.

This commit is contained in:
Ion Gaztañaga
2015-10-12 22:13:09 +02:00
parent d517bf46a8
commit 743e60a2d3
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ class expand_bwd_test_allocator
{ typedef expand_bwd_test_allocator<T2> other; };
//!Constructor from the segment manager. Never throws
expand_bwd_test_allocator(T *buffer = 0, size_type sz = 0, difference_type offset = 0)
expand_bwd_test_allocator(T *buffer, size_type sz, difference_type offset)
: mp_buffer(buffer), m_size(sz)
, m_offset(offset), m_allocations(0){ }

View File

@@ -31,7 +31,7 @@ class SimpleAllocator
public:
typedef Ty value_type;
explicit SimpleAllocator(int value = 0)
explicit SimpleAllocator(int value)
: m_state(value)
{}