Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
'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