Skip to content

Commit

Permalink
Workaround for clang bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kgorking committed Nov 21, 2023
1 parent b797e1a commit c689b5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/ecs/detail/interval_limiter.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct interval_limiter {

template <>
struct interval_limiter<0, 0> {
static consteval bool can_run() {
static constexpr bool can_run() {
return true;
}
};
Expand Down
2 changes: 1 addition & 1 deletion include/ecs/ecs.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -2901,7 +2901,7 @@ private:

template <>
struct interval_limiter<0, 0> {
static consteval bool can_run() {
static constexpr bool can_run() {
return true;
}
};
Expand Down
2 changes: 1 addition & 1 deletion include/ecs/ecs_sh.h
Original file line number Diff line number Diff line change
Expand Up @@ -2901,7 +2901,7 @@ struct interval_limiter {

template <>
struct interval_limiter<0, 0> {
static consteval bool can_run() {
static constexpr bool can_run() {
return true;
}
};
Expand Down

0 comments on commit c689b5d

Please sign in to comment.