إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'declaration' : expects N arguments - M provided
Remarks
A function template has too few or too many arguments.
Example
The following example generates C2780 and shows how to fix it:
// C2780.cpp
template<typename T>
void f(T, T){}
int main() {
f(1); // C2780
// try the following line instead
// f(1,2);
}