namespace X
{
  void* operator new (size_t);
}

gives error message as:

error: ‘void* X::operator new(size_t)’ may not be declared within a namespace

Is it a gcc compiler bug ? In older gcc version it seems to be working. Any idea, why it's not allowed ?

Use case: I wanted to allow only custom operator new/delete for the classes and wanted to disallow global new/operator. Instead of linker error, it was easy to catch compiler error; so I coded:

namespace X {
  void* operator new (size_t);
}
using namespace X;

This worked for older version of gcc but not for the new one.

link|improve this question

Duplicate of stackoverflow.com/questions/1568168/testoperator-new ? – Nemo Jun 2 '11 at 6:01
If you want to use a custom operator for the classes give them a common base class with that custom operator. – sharptooth Jun 2 '11 at 6:10
feedback

2 Answers

up vote 1 down vote accepted

@Sharptooth's Answer makes more sense if we consider this section from the standard:

3.7.3.1 Allocation functions [basic.stc.dynamic.allocation]

[..] An allocation function shall be a class member function or a global function; a program is ill-formed if an allocation function is declared in a namespace scope other than global scope or declared static in global scope. [..]

The above limitation is probably imposed for the very reason that @sharptooth's answer points out.

link|improve this answer
feedback

This is not allowed because it makes no sense. For example you have the following

int* ptr = 0;

namespace X {
    void* operator new (size_t);
    void operator delete(void*);
    void f()
    {
       ptr = new int();
    }
}

void f()
{
    delete ptr;
    ptr = 0;
}

now how should the ptr be deleted - with global namespace operator delete() or with the one specific to namespace X? There's no possible way for C++ to deduce that.

link|improve this answer
I have posted one use case. There can be other use case also where one may want to use it the operator only within namespace scope. – iammilind Jun 2 '11 at 5:56
See the discussion on the g++ bug report you referenced. This is forbidden by the standard. – Nemo Jun 2 '11 at 6:00
+1, agree with @sharptooth (I had thought of this problem earlier; but I was using this overload for some other purpose) – iammilind Jun 2 '11 at 6:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.