Skip to content

Commit

Permalink
ci: maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 15, 2024
1 parent 07e5dfd commit c15fb81
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions include/REX/REX/Enum.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace REX

template <class... Args>
Enum(Args...) -> Enum<
std::common_type_t<Args...>,
std::underlying_type_t<
std::common_type_t<Args...>>>;
std::common_type_t<Args...>,
std::underlying_type_t<
std::common_type_t<Args...>>>;
}
6 changes: 3 additions & 3 deletions include/REX/REX/EnumSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ namespace REX

template <class... Args>
EnumSet(Args...) -> EnumSet<
std::common_type_t<Args...>,
std::underlying_type_t<
std::common_type_t<Args...>>>;
std::common_type_t<Args...>,
std::underlying_type_t<
std::common_type_t<Args...>>>;
}

0 comments on commit c15fb81

Please sign in to comment.