update
This commit is contained in:
		@@ -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));
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user