Skip to content

Commit

Permalink
Update view.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarthelemy authored Mar 16, 2017
1 parent ec4da15 commit 3b0a0a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/rosbag_storage/src/view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ View::iterator::iterator(View* view, bool end) : view_(view), view_revision_(0),
View::iterator::iterator(const iterator& i) : view_(i.view_), iters_(i.iters_), view_revision_(i.view_revision_), message_instance_(NULL) { }

View::iterator &View::iterator::operator=(iterator const& i) {
if (this != &i)
{
if (this != &i) {
view_ = i.view_;
iters_ = i.iters_;
view_revision_ = i.view_revision_;
Expand Down

0 comments on commit 3b0a0a0

Please sign in to comment.