update
This commit is contained in:
parent
8d2dbfec22
commit
130d44e279
@ -6,5 +6,5 @@
|
|||||||
template < typename T >
|
template < typename T >
|
||||||
T pow(T v1, T v2) {
|
T pow(T v1, T v2) {
|
||||||
static_assert( std::is_arithmetic< T >::value, "Arithmetic type is required." );
|
static_assert( std::is_arithmetic< T >::value, "Arithmetic type is required." );
|
||||||
return (pow(v1, v2));
|
return (std::pow(v1, v2));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user