diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-11 17:01:41 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-11 17:01:41 +0900 |
commit | e9ae0d5eaac12a276ea352f1e633fb22cdd46828 (patch) | |
tree | 363d19a40e0e82b43d90059a66bba86d4c6e0d4a /lib/joinstate.h | |
parent | a3223e749d6f6c72b7c0ef638a1314d8bc77bc06 (diff) | |
download | libquotient-e9ae0d5eaac12a276ea352f1e633fb22cdd46828.tar.gz libquotient-e9ae0d5eaac12a276ea352f1e633fb22cdd46828.zip |
Now that we're C++17, remove old compatibility cruft
Diffstat (limited to 'lib/joinstate.h')
-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 718ae3fd..31c2b6a7 100644 --- a/lib/joinstate.h +++ b/lib/joinstate.h @@ -31,7 +31,7 @@ enum class JoinState : unsigned int { Q_DECLARE_FLAGS(JoinStates, JoinState) -// We cannot use REGISTER_ENUM outside of a Q_OBJECT and besides, we want +// We cannot use Q_ENUM outside of a Q_OBJECT and besides, we want // to use strings that match respective JSON keys. static const std::array<const char*, 3> JoinStateStrings { { "join", "invite", "leave" } }; |