A program I\'m expanding uses std::pair<> a lot.
std::pair<>
There is a point in my code at which the compiler throws a rather large:
N
As far as I can tell, someplace you have something like:
// for ease of reading typedef std::pair, const double*> MyPair; MyPair myPair = MAKEPAIR(.....); myPair.first = .....;
Since the members of MyPair are const, you can't assign to them.