Fixed constructor initializer list order warnings/errors.

This commit is contained in:
Aaron Jacobs
2011-05-24 00:42:58 +00:00
parent 5fb0f09cbb
commit 3b556ec633
2 changed files with 14 additions and 14 deletions

View File

@@ -258,8 +258,8 @@ ValueInternalArray::ValueInternalArray()
ValueInternalArray::ValueInternalArray( const ValueInternalArray &other )
: pages_( 0 )
, pageCount_( 0 )
, size_( other.size_ )
, pageCount_( 0 )
{
PageIndex minNewPages = other.size_ / itemsPerPage;
arrayAllocator()->reallocateArrayPageIndex( pages_, pageCount_, minNewPages );