0
votes
1answer
38 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 alloca …
4
votes
3answers
152 views
Why isn’t std::string::max_size() == std::string::allocator::max_size()
Recently I've noticed that the following statement is not true given std::string s.
s.max_size() == s.get_allocator().max_size();
I find this interesting, by default std::string …
0
votes
3answers
109 views
Account memory usage with custom allocator
I'm using a custom allocator to account for memory usage in several containers. Currently I use a static variable to account for the memory usage. How could I separate this account …
1
vote
1answer
118 views
lock free arena allocator implementation - correct?
for a simple pointer-increment allocator (do they have an official name?) I am looking for a lock-free algorithm. It seems trivial, but I'd like to get soem feedback whether my imp …
0
votes
1answer
162 views
C++ template with map allocator problem
I define a template function which loads a map from a CSV file:
template <class T>
bool loadCSV (QString filename, map<T,int> &mapping){
// function here
}
I …
0
votes
2answers
357 views
Dynamically change allocation strategy in boost::vector and boost::matrix
Hi,
In my new project i am building a data management module.I want to give a simple template storage type to upper layers like
template<typename T>
class Data
{
public:
…
