| 64 | // easier to redeclare than to force consuming projects to deal with NOMINMAX on Windows |
| 65 | template <typename T> |
| 66 | inline T Min(T a, T b) |
| 67 | { |
| 68 | return (a < b ? a : b); |
| 69 | } |
| 70 | |
| 71 | template <typename T> |
| 72 | inline T Max(T a, T b) |
no outgoing calls
no test coverage detected