Errore del compilatore C2784
'declaration': impossibile dedurre un argomento modello per 'type' da 'type'
Il compilatore non può determinare un argomento modello dagli argomenti della funzione forniti.
L'esempio seguente genera l'errore C2784 e mostra come risolverlo:
// C2784.cpp
template<class T> class X {};
template<class T> void f(X<T>) {}
int main() {
X<int> x;
f(1); // C2784
// To fix it, try the following line instead
f(x);
}