Tagged Questions

10
votes
2answers
319 views

libstdc++ parallel mode: Who's using it? Is it safe? Any similar projects?

the GNU implementation of the C++ Library supports a parallel mode, explained here. Any experiences in using it? Good ones? Bad ones? Especially regarding correctness, but also performance. Are ...
1
vote
1answer
83 views

SGI STL Rope in g++?

It seems that there is a implementation of rope in my /usr/include/c++/4.5.1/ext/rope (and ropeimpl.h). I compared it with SGI STL and the code seems to be pretty much the same codebase. I'm not ...
0
votes
2answers
110 views

iterator to pointer or reference - ERROR

I have this: //function definition //Point and Range are classes made of 2 ints Point barycenter_of_vector_in_range(vector<cv::Point> &points, cv::Range range); //In other place... ...
0
votes
1answer
2k views

std::stringstream strange behaviour

Some background information, for a homework assignment I had to write a polish notation calculator using binary trees, for this to work I had to parse command line input so that it would properly ...