mutable

C++ Specific —>

mutable member-variable-declaration;

This keyword can only be applied to non-static and non-const data members of a class. If a data member is declared mutable, then it is legal to assign a value to this data member from a const member function.

END C++ Specific