~ubuntu-branches/ubuntu/trusty/c++-annotations/trusty

« back to all changes in this revision

Viewing changes to yo/concrete/examples/iterators/bidirectional.h

  • Committer: Package Import Robot
  • Author(s): Frank B. Brokken
  • Date: 2012-01-20 11:53:17 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20120120115317-v4wiq9sttx72fabk
Tags: 9.1.0-1
New upstream release (covering C++11 to a large extend)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    return *this;
47
47
}
48
48
 
49
 
int &BidirectionalIterator::operator*() 
 
49
int &BidirectionalIterator::operator*()
50
50
{
51
51
    return d_value;
52
52
}
53