Environment: VS2005 C++ using STLPort 5.1.4. Com开发者_运维知识库piling the following code snippet:
I am using Visual C++ 2005 to build a couple of libraries and an executable. I include the STLport location in the Additional Include Path of the libraries and include the library in the input to link
I am trying to write a container class which uses STL allocators. What I currently do is to have a private member
When I run STLport on D开发者_JS百科arwin I get a strange crash. (Haven\'t seen it anywhere else than on Mac, but exactly same thing crash on both i686 and PowerPC.) This is what it looks like in gdb:
We\'re using STLPORT and we\'d like to change stlport\'s default allocator: instead of vector<int&开发者_开发知识库gt;, we\'d like to try vector<int, otherallocator>