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.
function call missing argument list
Remarks
Inside a nonstatic member function, a destructor or finalizer call did not have an argument list.
Example
The following example generates C3866:
// C3866.cpp
// compile with: /c
class C {
~C();
void f() {
this->~C; // C3866
this->~C(); // OK
}
};