Skip to content
Snippets Groups Projects
Commit e714e26f authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix cast away const qualifier

parent 9a0de678
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class BaseNode {
}
 
const Data * operator ->( ) const {
return static_cast < Data * > ( this );
return static_cast < const Data * > ( this );
}
 
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment