Files
piphoto/intmath.h
Ian Gulliver c9024d3d63 Checkpoint
2017-08-10 13:51:39 -07:00

7 lines
108 B
C++

#pragma once
template <typename T>
constexpr T AbsDiff(T a, T b) {
return (a > b) ? (a - b) : (b - a);
}