stats: add operator= for DataWrapVec class

gcc/g++ 4.4.7 complained about the operator= being undefined.
This changeset adds the operator.
This commit is contained in:
Nilay Vaish 2013-09-09 18:52:23 -05:00
parent ff87a0dd9c
commit e391fd151b

View file

@ -337,6 +337,9 @@ class DataWrapVec : public DataWrap<Derived, InfoProxyType>
DataWrapVec(const DataWrapVec &ref)
{}
void operator=(const DataWrapVec &)
{}
// The following functions are specific to vectors. If you use them
// in a non vector context, you will get a nice compiler error!