'operator new' 的傳回類型必須是 'void *'
備註
使用非基底指標時,運算子 new 的多載必須傳回 void *。
Example
下列範例會產生 C2824:
// C2824.cpp
// compile with: /c
class A {
A* operator new(size_t i, char *m); // C2824
// try the following line instead
// void* operator new(size_t i, char *m);
};