blob: e75fe74cc21269f30fcd1eda60c972d0a9a1e389 [file] [log] [blame]
#include "MathFunctions.h"
#include <cmath>
namespace MathFunctions {
double sqrt(double x)
{
return std::sqrt(x);
}
}