Tagged Questions

4
votes
3answers
265 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
115 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
146 views

Is STLPort's string implementation using reference counting?

Is STLPort implemented string via reference counting mechanism?
1
vote
2answers
964 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
0answers
8 views

How is an STL library added to Visual Studio when STLport is already present?

I'm maintaining a legacy application (built with VS2006 and later migrated to VS2010. consists of 30 projects totalling about 8000 files) which my senior says, uses STLport instead of standard STL. ...
0
votes
1answer
13 views

Rumtime error when many version of STL libraries in one process

I develop with VC6.0 in WinXP and here is the "Directories" : While one of the libraries I used in the project dependents another version MS libraries: Obviously, I don't have these libraries. ...
0
votes
1answer
321 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 ...