Compiler Error C3672
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3672.
pseudo-destructor expression can only be used as part of a function call
A destructor was called incorrectly. For more information, see Destructors.
The following sample 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);
}
Show: