Files
piphoto/intmath.h

7 lines
108 B
C
Raw Normal View History

2017-08-10 13:51:39 -07:00
#pragma once
template <typename T>
constexpr T AbsDiff(T a, T b) {
return (a > b) ? (a - b) : (b - a);
}