הערה
גישה לעמוד זה דורשת אישור. אתה יכול לנסות להיכנס או לשנות תיקיות.
גישה לעמוד זה דורשת אישור. אתה יכול לנסות לשנות מדריכים.
pseudo-destructor expression can only be used as part of a function call
Remarks
A destructor was called incorrectly. For more information, see Destructors.
Example
The following example generates C3672.
// C3672.cpp
template<typename T>
void f(T* pT) {
&pT->T::~T; // C3672
pT->T::~T(); // OK
}
int main() {
int i;
f(&i);
}