1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-29 23:27:13 +08:00
2019-06-18 10:36:16 -04:00

19 lines
230 B
C++

#include "MathFunctions.h"
#include <cmath>
#ifdef USE_MYMATH
# include "mysqrt.h"
#endif
namespace mathfunctions {
double sqrt(double x)
{
#ifdef USE_MYMATH
return detail::mysqrt(x);
#else
return std::sqrt(x);
#endif
}
}