News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

tooltip: "n : > > "

Started by bugmenot, June 03, 2009, 07:15:49 PM

Previous topic - Next topic

bugmenot

Hello,

a great feature of codeblock is, that, when you mouseover a variable, a tooltip appears telling you the type of the variable.
But:
After you used cin to ket the user input the variable, codeblock claims that the variable has the type cin > > ...
How can I avoid this?

Example

...
int n; // tooltip doesn't appear
cout << n; // tooltip says "n : int"
cin >> n; // tooltip says "n : int"
cout << n; / tooltip says "n : cin > >"