diff --git a/include/pow/pow.hpp b/include/pow/pow.hpp index fca9c5e..57e307a 100644 --- a/include/pow/pow.hpp +++ b/include/pow/pow.hpp @@ -6,5 +6,5 @@ template < typename T > T pow(T v1, T v2) { static_assert( std::is_arithmetic< T >::value, "Arithmetic type is required." ); - return (pow(v1, v2)); + return (std::pow(v1, v2)); }