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