Commit 0c0e7e5
committed
🎨 Fix accidental
Problem:
- In the trigger scheduler tests, `debug_handler::signal` is accidentally marked
`constexpr`. Prior to C++23, `constexpr` functions cannot have non-literal
local variables (like `std::lock_guard`. There is no reason for this function
to be accidentally C++23 only.
Solution:
- Remove the `constexpr` qualification.constexpr function1 parent efda8da commit 0c0e7e5
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
170 | 170 | | |
171 | 171 | | |
172 | 172 | | |
173 | | - | |
| 173 | + | |
174 | 174 | | |
175 | 175 | | |
176 | 176 | | |
| |||
0 commit comments