Tagged Questions

7
votes
2answers
425 views

C++ allocators, specifically passing constructor arguments to objects allocated with boost::interprocess::cached_adaptive_pool

This is an embarrassing question, but even the well-written documentation provided with boost.interprocess hasn't been enough for me to figure out how to do this. What I have is a ...
2
votes
1answer
245 views

Generic allocator class without variadic templates?

I am trying to write a generic allocator class that does not really release an object's memory when it is free()'d but holds it in a queue and returns a previously allocated object if a new one is ...
1
vote
1answer
79 views

Custom allocator fails to rebind to Other type

All I have code for my custom allocator that is written with intent to be a proxy for other allocators to be able for example to gather allocation statistics or whatever else template<int Id, ...
0
votes
1answer
150 views

Syntax for default template template parameter

I have written a list-like template class sll (Single Linked List). Now, I am trying to plugin an allocator to it. I have the default allocator, allocator, and a pool based allocator, pool_allocator. ...
0
votes
1answer
584 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 then try to use it: ...
0
votes
2answers
915 views

Dynamically change allocation strategy in boost::vector and boost::matrix

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: T getValue(); private: ...