Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Error C2821

first formal parameter to 'operator new' must be 'unsigned int'

The first formal parameter of the operator new must be an unsigned int.

The following sample generates C2821:

// C2821.cpp
// compile with: /c
void * operator new( /* unsigned int,*/ void * );   // C2821
void * operator new( unsigned int, void * );
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.