fixed test suite, fixed arraylist ambiguity

This commit is contained in:
rriegel
2008-03-11 01:46:08 +00:00
parent e55c93e7cf
commit 4566179385
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ class ArrayList {
void Copy(const Element *ptr, index_t size) {
DEBUG_ASSERT_MSG(size_ == BIG_BAD_NUMBER, "reinitialization not allowed");
ptr_ = mem::AllocCopyConstruct<Element>(ptr, size);
ptr_ = mem::AllocCopyConstruct(ptr, size);
cap_ = size;
size_ = size;
}