Tagged Questions

4
votes
3answers
253 views

std::string insert method has ambiguous overloads?

Environment: VS2005 C++ using STLPort 5.1.4. Compiling the following code snippet: std::string copied = "asdf"; char ch = 's'; copied.insert(0,1,ch); I receive an error: Error 1 error C2668: ...
1
vote
3answers
109 views

stringstream operator selection issues

I have a class constructor like so: DotDashLogMatcher( std::stringstream const& pattern ); I call it like so: std::stringstream s; DotDashLogMatcher( s << "test" ); This is an ...
1
vote
1answer
135 views

Is STLPort's string implementation using reference counting?

Is STLPort implemented string via reference counting mechanism?
1
vote
2answers
948 views

Has anyone already done the work to make STLPort build with VS2008 and/or an x64 build with VS2005?

At present it seems that VS2008 still isn't supported either in the 5.1.5 release or in the STLPort CVS repository. If someone has already done this work then it would be useful to share, if possible ...
0
votes
1answer
316 views

Which allocator are available in STLPORT, and how to use them

We're using STLPORT and we'd like to change stlport's default allocator: instead of vector<int>, we'd like to try vector<int, otherallocator> Which alternative allocator are available in ...