Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
'function' : no function prototype given: converting '()' to '(void)'
Remarks
The compiler didn't find an explicit list of arguments to a function. This warning is for the C compiler only.
This warning is off by default. For more information, see Compiler Warnings That Are Off by Default.
Example
The following example generates C4255:
// C4255.c
// compile with: /W4 /WX
#pragma warning (default : 4255)
void f() { // C4255
// try the following line instead
//void f(void) {
}
int main(int argc, char *argv[]) {
f();
}