aboutsummaryrefslogtreecommitdiff
path: root/lib/joinstate.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-03 17:29:52 +0900
committerGitHub <noreply@github.com>2019-08-03 17:29:52 +0900
commit66e116b7b1e848e80577a0229c8995db0a54932e (patch)
tree763340439a0f4034e9c829d76cb1ffe9766b83c5 /lib/joinstate.h
parent5b236dfe895c7766002559570aa29c9033009228 (diff)
parentc05ade838f0fce81f2bbe80a3295618a8a26ff52 (diff)
downloadlibquotient-66e116b7b1e848e80577a0229c8995db0a54932e.tar.gz
libquotient-66e116b7b1e848e80577a0229c8995db0a54932e.zip
Merge pull request #295 from marcdeop/140_impose_coding_standard
140 impose coding standard
Diffstat (limited to 'lib/joinstate.h')
-rw-r--r--lib/joinstate.h41
1 files changed, 20 insertions, 21 deletions
diff --git a/lib/joinstate.h b/lib/joinstate.h
index 4ae67de8..fcf840ae 100644
--- a/lib/joinstate.h
+++ b/lib/joinstate.h
@@ -13,7 +13,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
@@ -22,27 +22,26 @@
#include <array>
-namespace QMatrixClient
-{
- enum class JoinState : unsigned int
- {
- Join = 0x1,
- Invite = 0x2,
- Leave = 0x4,
- };
+namespace QMatrixClient {
+enum class JoinState : unsigned int {
+ Join = 0x1,
+ Invite = 0x2,
+ Leave = 0x4,
+};
- Q_DECLARE_FLAGS(JoinStates, JoinState)
+Q_DECLARE_FLAGS(JoinStates, JoinState)
- // We cannot use REGISTER_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" } };
+// We cannot use REGISTER_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" } };
- inline const char* toCString(JoinState js)
- {
- size_t state = size_t(js), index = 0;
- while (state >>= 1u) ++index;
- return JoinStateStrings[index];
- }
-} // namespace QMatrixClient
+inline const char* toCString(JoinState js)
+{
+ size_t state = size_t(js), index = 0;
+ while (state >>= 1u)
+ ++index;
+ return JoinStateStrings[index];
+}
+} // namespace QMatrixClient
Q_DECLARE_OPERATORS_FOR_FLAGS(QMatrixClient::JoinStates)