add default base to quiet llvm-gcc warning

git-svn-id: https://zxing.googlecode.com/svn/trunk@1982 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
smparkes@smparkes.net 2011-10-19 14:26:01 +00:00
parent b910002170
commit c6f8ef2272

View file

@ -1,3 +1,4 @@
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
#ifndef __ARRAY_H__
#define __ARRAY_H__
@ -132,7 +133,7 @@ public:
reset(const_cast<Array<T> *>(&a));
}
ArrayRef(const ArrayRef &other) :
array_(0) {
Counted(), array_(0) {
#ifdef DEBUG_COUNTING
cout << "instantiating ArrayRef " << this << " from ArrayRef " << &other << ":\n";
#endif