| 197 | } |
| 198 | |
| 199 | static inline T clamp(const Type l, const Type v, const Type u) |
| 200 | { |
| 201 | return ((v < l) ? l : ((v > u) ? u : v)); |
| 202 | } |
| 203 | |
| 204 | static inline T func00(Type x, Type y) |
| 205 | { |
nothing calls this directly
no outgoing calls
no test coverage detected