Skip to content

Commit

Permalink
Fixed|libdeng2: Missing return value in AutoRef
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 18, 2014
1 parent 7ffea3d commit 76f4aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/include/de/data/counted.h
Expand Up @@ -262,7 +262,7 @@ class AutoRef
operator CountedType const * () const { return _ref; }
operator CountedType * () { return _ref; }
operator CountedType const & () const { return *_ref; }
operator CountedType & () { *_ref; }
operator CountedType & () { return *_ref; }
private:
CountedType *_ref;
};
Expand Down

0 comments on commit 76f4aa6

Please sign in to comment.