diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-12-09 17:41:16 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-12-09 19:28:39 +0900 |
commit | dae8dc138f29fce19ae666eb152567a566abe229 (patch) | |
tree | 4136a51afbdb197e583bcb0b6ee3d9570f1bb5c5 | |
parent | 95d4df58b39962f771885a6615efe1a682aab356 (diff) | |
download | libquotient-dae8dc138f29fce19ae666eb152567a566abe229.tar.gz libquotient-dae8dc138f29fce19ae666eb152567a566abe229.zip |
JoinState: use unsigned int as the underlying type
-rw-r--r-- | lib/joinstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/joinstate.h b/lib/joinstate.h index c172f576..379183f6 100644 --- a/lib/joinstate.h +++ b/lib/joinstate.h @@ -24,7 +24,7 @@ namespace QMatrixClient { - enum class JoinState + enum class JoinState : unsigned int { Join = 0x1, Invite = 0x2, |