Skip to content

Commit

Permalink
Correct is_floating_point_v typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mysterymath committed Mar 21, 2024
1 parent 60076b9 commit dc85a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mos-platform/common/include/type_traits
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ template <class T>
struct is_floating_point : public bool_constant<__is_floating_point(T)> {};

template <class T>
inline constexpr bool is_floating_pointr_v = is_floating_point<T>::value;
inline constexpr bool is_floating_point_v = is_floating_point<T>::value;

template <class T> struct is_union : public bool_constant<__is_union(T)> {};

Expand Down

0 comments on commit dc85a7d

Please sign in to comment.