Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
function call missing argument list
Remarks
A function call must include the open and close parentheses after the function name even if the function takes no parameters.
Example
The following example generates C4551:
// C4551.cpp
// compile with: /W1
void function1() {
}
int main() {
function1; // C4551
function1(); // OK
}