Commit c351c48d authored by Joseph Noir's avatar Joseph Noir

Fix build with MSVC

parent c6dd70fa
......@@ -76,6 +76,10 @@ public:
return res;
}
const value_type& operator*() const {
return *ptr;
}
value_type& operator*() {
return *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