Fix issue #29: error using a non-const reference as parameter

in NullableIterator::setIterator() when a const-reference is the
expected type.
This commit is contained in:
David Capello 2011-07-10 00:44:48 -03:00
parent 8cc1e0e7b7
commit a5056e1551

View File

@ -68,7 +68,7 @@ public:
return m_iterator;
}
void setIterator(iterator& it) {
void setIterator(const iterator& it) {
m_isNull = false;
m_iterator = it;
}