Compiler Error C2325
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 C2325.
type' : unexpected type to the right of 'name'
A call is made to a destructor of incorrect type.
The following sample generates C2325:
// C2325.cpp
// compile with: /c
class A {};
typedef A* pA_t;
void f() {
A** ppa = new A *;
ppa->~A*; // C2325
pA_t *ppa2 = new pA_t;
ppa2->~pA_t(); // OK
}
Show: