Merge remote-tracking branch 'atgeirr/fully-implicit' into fully-implicit

This commit is contained in:
Bård Skaflestad
2013-05-24 21:49:27 +02:00
3 changed files with 74 additions and 0 deletions

View File

@@ -485,6 +485,10 @@ public:
ASSERT(span_ == rhs.span_);
return index_ != rhs.index_;
}
int operator*()
{
return (*span_)[index_];
}
private:
const Span* span_;
int index_;