Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Help
/
guide
/
importing-exporting
/
MathFunctionsComponents
/
MathFunctions.cxx
blob: e75fe74cc21269f30fcd1eda60c972d0a9a1e389 [
file
]
#include
"MathFunctions.h"
#include
<cmath>
namespace
MathFunctions
{
double
sqrt
(
double
x
)
{
return
std
::
sqrt
(
x
);
}
}