הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
static function 'function' declared but not defined
Remarks
A forward reference is made to a static function that is never defined.
A static function must be defined within file scope. If the function is defined in another file, it must be declared extern.
Example
The following example generates C2129:
// C2129.cpp
static void foo(); // C2129
int main() {
foo();
}
Possible resolution:
// C2129b.cpp
static void foo();
int main() {
foo();
}
static void foo() {}