
12 Nov
2005
12 Nov
'05
7:12 a.m.
On Nov 11, 2005, at 8:02 PM, Jeremy Y. Meng wrote:
Peter, I think you are right here. I experimented with MIPSpro a little bit more and found there exists cmath. However the function fabs() needs std:: to work without compiling error. Should I identify all those offending cmath functions and prefix them with std::?
I think that might depend on the general use and frequency.
Often it's good to use an explicit 'using' if there's no confusion.
For example, this might get
using std::fabs;