diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-02-24 17:40:16 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-02-24 17:40:16 +0100 |
commit | 0ad10f6aeebf75ef550cfa2ce772d28b2b9fd7e0 (patch) | |
tree | 92ec7b189debd4ee5559bb9a1500c8ce6b8a9cfe /src/ManagementServer.h | |
parent | c27252b79363b46658fccbe743dc911049dd3450 (diff) | |
download | dabmux-0ad10f6aeebf75ef550cfa2ce772d28b2b9fd7e0.tar.gz dabmux-0ad10f6aeebf75ef550cfa2ce772d28b2b9fd7e0.tar.bz2 dabmux-0ad10f6aeebf75ef550cfa2ce772d28b2b9fd7e0.zip |
Use enum class for input_state_t
Diffstat (limited to 'src/ManagementServer.h')
-rw-r--r-- | src/ManagementServer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ManagementServer.h b/src/ManagementServer.h index c0b50e7..274dece 100644 --- a/src/ManagementServer.h +++ b/src/ManagementServer.h @@ -65,7 +65,7 @@ /*** State handing ***/ /* An input can be in one of the following three states: */ -enum input_state_t +enum class input_state_t { /* The input is waiting for data, all buffers are empty */ NoData, |