0

Possible Duplicate:
C++ ‘mutable’ keyword

What does the keyword mutable do in the following C++ code:

class X {
   mutable int x;
...
};
1

1 Answer 1

1

mutable keyword allows you to modify particular attribute of a constant object ... check this

Not the answer you're looking for? Browse other questions tagged or ask your own question.