mirror of
https://github.com/QuasarApp/backward-cpp.git
synced 2025-05-01 12:29:33 +00:00
squash! Add missing ref qualifier to the other overload
This commit is contained in:
parent
fb4a00d1f8
commit
9c4c163583
@ -491,7 +491,7 @@ public:
|
|||||||
// bools without throwing... It's a lost cause anyway!
|
// bools without throwing... It's a lost cause anyway!
|
||||||
}
|
}
|
||||||
|
|
||||||
T operator->() { return _val; }
|
T& operator->() { return _val; }
|
||||||
const T& operator->() const { return _val; }
|
const T& operator->() const { return _val; }
|
||||||
|
|
||||||
typedef typename rm_ptr<T>::type& ref_t;
|
typedef typename rm_ptr<T>::type& ref_t;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user