我收到的错误如下:
FxMathFunctions.h: In function 'FxInt32 IMin(FxInt32, FxInt32)':
FxMathFunctions.h:13: error: redefinition of 'FxInt32 IMin(FxInt32, FxInt32)'
FxMathFunctions.h:15: error: 'FxInt32 IMin(FxInt32, FxInt32)' previously defined here
在FxMathFunctions.h我有:
11: struct FxPoint2d;
12:
13: inline FxInt32 IMin(FxInt32 i1,FxInt32 i2)
14: {
15: if (i2 < i1) i1 = i2;
16: return i1;
17: }
FxInt32在我包含的标题中定义:
typedef long FxInt32;
如果错误地说FxInt32正在被重新定义或整个函数是否正确,我无法通过错误来决定。
我该如何解决这个问题?
更新我在上面添加了行号。