I'm working at a my own library, and I have my own allocators. I've declared a common interface like this:
class MyAllocator
{
public:
void * allocate(size_t size);
void * allocate(size_t size, size_t align);
void deallocate(void *);
//...
};
Now, if I want to allocate C++ objects with allocators like this I must use the placement new in this manner:
MyAllocator a;
MyObject * o = new(a.allocate(sizeof(MyObject))) MyObject(param1, param2, ...);
This, of course, works pretty well. Now, time ago I wanted to make a global allocator, which take the allocator as a parameter, in order to avoid that repetitive sizeof(). So I come with this:
template< typename AllocatorT >
inline
void *operator new(size_t n_bytes, AllocatorT & allocator)
{
return allocator.allocate(n_bytes);
}
With this, I can just call:
MyAllocator my_alloc;
MyObject * o = new(my_alloc) MyObject(param1, param2);
A syntax much clean, and cool. This basically works pretty well too (with gcc, and with msvc2010), but today, when I have tried it in msvc2008 I got errors: that's because of msvc2008 compiler get fooled from that template parameter, so, when I include a header which use the normal placement new [almost every stl header contain a call to a placement new, e.g. vector, set, etc] the compiler will use my templated version of global new, instead of the placement new, causing an obvious error: a type 'void*' is not a class/struct and of course do not have the allocate() member function.
Now, questions arise:
- Is this a bug of msvc2008? With gcc 4.4.0, 4.4.5 and msvc2010 it works pretty well.
- Am I wrong in writing a templated global new operator which accepts an allocator reference? I mean, can this thing be an ambiguous syntax that can get compilers fooled easily, often causing errors, and I should abandon this idea, or can this be doable in some other way? As noticed before, it reduces very much the complexity of C++ objects allocation with a custom allocator using the normal placement new.
Normally, if we have:
void f(void *); //1 template< typename A >f(A &); //2
and we call:
void * void_ptr = something();
f(void_ptr);
of course here the first version get called.
Why this seems not happen in msvc2008 with that templated version of operator new?
enable_if. If not, just use a regular non-template function. – n.m. Jun 5 '12 at 16:59Allocator*to the object. – Paranaix Jun 5 '12 at 17:14