Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
'function': the symbol to the left of a '::' must be a type
A function was called incorrectly.
Example
The following sample generates C3083.
// C3083.cpp
// compile with: /c
struct N {
~N();
};
struct N1 {
~N1();
};
N::N::~N() {} // C3083
N1::~N1() {} // OK