supercloud
Senior Member
43 Posts |
Posted - Oct 26 2004 : 03:52:35 AM
|
I have the following code:
dTemp = pnRightNum[j] / nTestNum;
Then I want to cast the int variables to double ones, so I use static_cast<double> operator. However, when I type ">", a suggestion listbox appears with the items "double","DOUBLE" and a blank tooltip on the right, which is very annoying.
dTemp = static_cast<double>|pnRightNum[j] / nTestNum; |: Here the suggestion listbox appears! "|" stands for cursor position.
|
|