aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-12-27 10:09:39 -0800
committerChris Robinson <[email protected]>2020-12-27 10:28:59 -0800
commitadb54677208c8dba40e60cd0731a11219cbbe319 (patch)
tree8fd1949a549b9b2a42439d88f7c9a5ac118d02e2 /core
parent4c0f77c13e5e38b6fb4c4e2746a6f1adf373f290 (diff)
Use smaller types for enums
Diffstat (limited to 'core')
-rw-r--r--core/devformat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/devformat.h b/core/devformat.h
index 9577c4b7..6b6fee77 100644
--- a/core/devformat.h
+++ b/core/devformat.h
@@ -6,7 +6,7 @@
using uint = unsigned int;
-enum Channel {
+enum Channel : unsigned char {
FrontLeft = 0,
FrontRight,
FrontCenter,