7 #if !defined(CNL_FIXED_POINT_H)
8 #define CNL_FIXED_POINT_H
15 struct is_fixed_point : is_integer<T> {
19 inline constexpr
auto is_fixed_point_v = is_fixed_point<T>::value;
22 concept fixed_point = is_fixed_point_v<T>;
25 #endif // CNL_FIXED_POINT_H