What does it mean when a variable appears red in the visual studio C++ debugger?

Viewed 20377

what does it mean when a variable appears red in the visual studio C++ debugger? I assume not good.

Thanks.

1 Answers

Its value changed during the last 'step'. Don't worry, there is nothing wrong.

Related