T O P I C R E V I E W |
dango |
Posted - Jan 29 2007 : 5:04:58 PM Hi Using build 1544 with vs 2003:
#include <vector>
using namespace std; class TestClass { public: int myInt; }; void TestFunc() { std::vector<TestClass> stuff(100); for (int i=0; i < (int) stuff.size(); ++i) { TestClass& curTest = stuff[i];
curTest } }
Type a '.' after curTest and VA incorrectly turns it into a "->"
Thanks, DanGo |
2 L A T E S T R E P L I E S (Newest First) |
support |
Posted - Mar 17 2007 : 4:07:00 PM Case 4795 is fixed in build 1549. |
feline |
Posted - Jan 30 2007 : 07:56:40 AM I am seeing the same effect here. Thank you for the clear description. In my testing if curTest is initialised to point at something other than an array item then this does not happen, which is good.
case=4795 |