Errore del compilatore C2710
'construct': '__declspec(modificatore)' può essere applicato solo a una funzione che restituisce un puntatore
Una funzione il cui valore restituito è un puntatore è l'unico costrutto a cui modifier
è possibile applicare.
L'esempio seguente genera l'errore C2710:
// C2710.cpp
__declspec(restrict) void f(); // C2710
// try the following line instead
__declspec(restrict) int * g();