2 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3 // DR127: Ambiguity in description of matching deallocation function
10 // placement new, but can be called through normal new syntax.
11 void* operator new(std::size_t size, float = 0.0f)
13 return ::operator new(size);
16 // The matching deallocation function must be called, which means
17 // the placemente delete.
18 void operator delete(void*);
19 void operator delete(void*, float) {}