这是一个非常简单的问题,让我感到困惑。
我收到一个源文件的以下错误,但另一个源文件没有:
4 src/Source2.cpp:1466: error: no matching function for call to ‘cos(double&)’
5 src/Source2.cpp:1466: error: no matching function for call to ‘sin(double)’
6 src/Source2.cpp:1467: error: no matching function for call to ‘sin(double&)’
7 src/Source2.cpp:1467: error: no matching function for call to ‘sin(double)’
8 src/Source2.cpp:1468: error: no matching function for call to ‘cos(double)’
9 src/Source2.cpp:1479: error: no matching function for call to ‘cos(double&)’
10 src/Source2.cpp:1479: error: no matching function for call to ‘sin(double)’
11 src/Source2.cpp:1480: error: no matching function for call to ‘sin(double&)’
12 src/Source2.cpp:1480: error: no matching function for call to ‘sin(double)’
13 src/Source2.cpp:1481: error: no matching function for call to ‘cos(double)’
这很奇怪,因为我有 Header1.hpp/Source1.cpp 工作,但 Header2.hpp/Source2.cpp 不工作。它们之间的区别在于 Source2 使用“doubles”而 Source1 使用“floats”,但使用 'sin(float)' 或 'cos(float)' 进行强制转换会产生与上述相同的错误。
我想我正在链接数学库,因为其他来源(相同的程序)可以工作并且没有抱怨。
任何建议表示赞赏=)
提前致谢!
代码片段:
Header1.hpp:
4 #include <iostream>
5
6 #include <stdio.h>
7 #include <math.h>
8 #include <ctime>
9
10 #define GL_GLEXT_PROTOTYPES
11
13 #include <OpenGL/gl.h>
14 #include <GLUT/glut.h>
源1.cpp:
123 aim[0] = cos(camTheta)*sin(camPhi);
124 aim[1] = sin(camTheta)*sin(camPhi);
125 aim[2] = cos(camPhi);
126
127 up[0] = cos(camTheta)*sin(camPhi - pih);
128 up[1] = sin(camTheta)*sin(camPhi - pih);
129 up[2] = cos(camPhi - pih);
页眉2.hpp:
4 #include <algorithm>
5 #include <iostream>
6 #include <fstream>
7 #include <sstream>
8 #include <vector>
9 #include <cmath>
. . .
25 #define pih (M_PI/2.0)
26 #define pi M_PI
27 #define pi2 (2.0*M_PI)
源代码2.cpp:
1453 double theta, phi;
1454 double x, y, z;
. . .
1464 node(n,0) = cos(theta)*sin(phi - pih);
1465 node(n,1) = sin(theta)*sin(phi - pih);
1466 node(n,2) = cos(phi - pih);