Codechange: Specify underlying type for all enums excluding those exposed to scripts. (#13383)

This commit is contained in:
Peter Nelson
2025-01-28 22:17:34 +00:00
committed by GitHub
parent 6fda85c569
commit afc0745aa2
180 changed files with 371 additions and 367 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ public:
using Ticks = int32_t; ///< The type to store ticks in
using TickCounter = uint64_t; ///< The type that the tick counter is stored in
enum Priority {
enum Priority : uint8_t {
NONE, ///< These timers can be executed in any order; the order is not relevant.
/* For all other priorities, the order is important.