Author Topic: tooltip: "n : > > "  (Read 2690 times)

Offline bugmenot

  • Multiple posting newcomer
  • *
  • Posts: 32
tooltip: "n : > > "
« on: June 03, 2009, 07:15:49 pm »
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
Code
...
int n; // tooltip doesn't appear
cout << n; // tooltip says "n : int"
cin >> n; // tooltip says "n : int"
cout << n; / tooltip says "n : cin > >"