Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 611 Bytes

compiler-warning-level-1-c4551.md

File metadata and controls

27 lines (22 loc) · 611 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4551
Compiler Warning (level 1) C4551
11/04/2016
C4551
C4551
458b59bd-e2d7-425f-9ba6-268ff200424f

Compiler Warning (level 1) C4551

function call missing argument list

A function call must include the open and close parentheses after the function name even if the function takes no parameters.

The following sample generates C4551:

// C4551.cpp
// compile with: /W1
void function1() {
}

int main() {
   function1;   // C4551
   function1();   // OK
}