Compiler Error C2129
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2129.
static function 'function' declared but not defined
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.
Show: