16 Aug
2008
16 Aug
'08
8:04 a.m.
That would come from std::sort not being defined. I would suggest adding
#include <algorithm>
to the top of that file. Possibly it is getting picked up by other includes on other people's machines, but not on yours. Including it explicitly should help. We get the same problem sometimes with <string.h> being included "automatically" on some people's systems, but not on others.
bob
Michael Park wrote:
...<snip>...
2geom/geom.cpp: In function 'void Geom::eliminate_duplicates_p(std::vector<Geom::Point, std::allocatorGeom::Point >&)': 2geom/geom.cpp:243: error: 'sort' is not a member of 'std' make[2]: *** [2geom/geom.o] Error 1
...<snip>...