tiny fix in vec.h for older compiler compatibility

This commit is contained in:
Jiri Pittner 2021-10-07 13:57:19 +02:00
parent ef1d3c3e3d
commit 4a08475527
1 changed files with 1 additions and 1 deletions

2
vec.h
View File

@ -37,7 +37,7 @@ template <typename T> class CyclePerm;
* auxiliary macro to avoid compilation errors for some types
******************************************************************************/
template <typename T>
inline typename LA_traits<T>::normtype MYABS(const T &x) {return abs(x);}
inline typename LA_traits<T>::normtype MYABS(const T &x) {return std::abs(x);}
template <> inline unsigned char MYABS(const unsigned char &x) {return x;}
template <> inline unsigned short MYABS(const unsigned short &x) {return x;}