blob: 41eb2b06c0fa046f67ef69e6ae88d49aaf6fc8bd [file] [log] [blame]
template<typename T>
T abs(T x) {
if (x < 0) {
return -x;
}
return x;
}