I have a vector of pairs as a field inside an object. Said object has a method where I need to access values in the pairs in the vector. I am using an iterator to point to the place in the vector I wish to access. Here are snippets of code that contain the vector:
In header file:
vector<pair<double, double> > points;
vector<pair<double, double> >::iterator headingTo;
In constructor:
points.push_back(make_pair(1700.00, 3300.00));//Plus 20 or so other values
headingTo = points.begin();
In method:
double x = headingTo->first - positionX;
double y = headingTo->second - positionY;
However when I run this code y is not being created. Its not shown in Visual Studio at all when I use a break point to see the variables. However if I swap the lines around, y is accessible and x is not. Any ideas?
Edit: I've found the following works:
double headingToX = headingTo->first;
headingToX -= positionX;
double headingToY = headingTo->second;
headingToY-= positionY;
ylater, does the compiler complain that no such variable has been defined? – Beta Apr 18 '12 at 18:56