Commit 573fb813 authored by Dominik Charousset's avatar Dominik Charousset

Fix const-correctness of operator->

parent 0923e6ee
...@@ -101,7 +101,7 @@ public: ...@@ -101,7 +101,7 @@ public:
return promote(ptr); return promote(ptr);
} }
const pointer operator->() const { const_pointer operator->() const {
return promote(ptr); return promote(ptr);
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment