Make track parameters getter const
There is really no reason for this getter method to not be const. The returned pointer is to a const value, and the non-const qualification makes it impossible to use this extremely useful getter in non-const contexts.
parent
c1cea7de
Please register or sign in to comment