Adding const to getter methods

I noticed that getter methods of cocos2d-x are not const declaration.
For example CCNode::getPosition().

Library declaretion is as follows.

virtual const CCPoint& getPosition();

I hope it would be as follows.

virtual const CCPoint& getPosition() const;

Is there a plan for adding const to them?

This has already been done in version 3.