Hello,
I'm developing a c++ application on ubuntu.
I use some pre compiled libraries (I worked with them before)
the thing is I'n getting error messages when building such as
1 2 3
Vector3.h:163 error: 'sqrt' was not declared in this scope
Vector3.h:168 error: 'acos' was not declared in this scope
Atom.h:45 error: 'asin' was not declared in this scope
and so on..
the thing is that I do not use math.h in my code and these errors are in
the libraries I use. as I said I used these libs before with no problems.
any suggestions what it might be?
Thanks, Ini
Posting a sample of the Vector3.h or Atom.h files would probably help...specifically the include directives and the context in which you are receiving the error.