Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

Thanks.

like image 869
T.T.T. Avatar asked Jan 28 '10 18:01

T.T.T.


People also ask

How do I show variables in Visual Studio debugger?

When stopped in the debugger hover the mouse cursor over the variable you want to look at. The DataTip will appear showing you the value of that variable. If the variable is an object, you can expand the object by clicking on the arrow to see the elements of that object.


1 Answers

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

like image 150
Trent Avatar answered Oct 13 '22 14:10

Trent