C++を使用した次のコードからエラーが発生します。
Main.cpp
#include "file.h"
int main()
{
int k = GetInteger();
return 0;
}
File.h
static int GetInteger();
File.cpp
#include "file.h"
static int GetInteger()
{
return 1;
}
私が得るエラー:
Error C2129: static function 'int GetInteger(void)' declared but not defined.
有名な記事「CおよびC++でのコードファイルの整理」を読みましたが、このコードの何が問題になっているのかわかりません。