pcb_calculator: fix compil issue about isinf (under mingw)

This commit is contained in:
jean-pierre charras 2012-09-22 17:45:15 +02:00
commit 160560c916
1 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,8 @@ inline double atanh(double x)
return log((1.0+x)/(1.0-x))/2.0; return log((1.0+x)/(1.0-x))/2.0;
} }
#else
using namespace std;
#endif #endif