summaryrefslogtreecommitdiff
path: root/Help/guide/importing-exporting/MathFunctionsComponents/SquareRoot/SquareRoot.cxx
blob: 29c0c4a9b5004acba1384b512a1f5c21ed20249d (plain)
1
2
3
4
5
6
7
8
9
10
#include "SquareRoot.h"

#include <cmath>

namespace MathFunctions {
double sqrt(double x)
{
  return std::sqrt(x);
}
}