Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'type': illegal sizeof operand
The sizeof operator requires an expression or type name.
The following sample generates C2070:
// C2070.cpp
void func() {}
int main() {
int a;
a = sizeof(func); // C2070
}
Possible resolution:
// C2070b.cpp
void func() {}
int main() {
int a;
a = sizeof(a);
}