aboutsummaryrefslogtreecommitdiff
path: root/lib/events/stateevent.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-02 19:59:40 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-02 19:59:40 +0900
commitc05ade838f0fce81f2bbe80a3295618a8a26ff52 (patch)
tree763340439a0f4034e9c829d76cb1ffe9766b83c5 /lib/events/stateevent.h
parent1a1ea8fc87e827fa44c80ff30277e3bee62f4ebb (diff)
downloadlibquotient-c05ade838f0fce81f2bbe80a3295618a8a26ff52.tar.gz
libquotient-c05ade838f0fce81f2bbe80a3295618a8a26ff52.zip
Apply the new brace wrapping to source files
Diffstat (limited to 'lib/events/stateevent.h')
-rw-r--r--lib/events/stateevent.h21
1 files changed, 7 insertions, 14 deletions
diff --git a/lib/events/stateevent.h b/lib/events/stateevent.h
index d1b742ba..757c94ee 100644
--- a/lib/events/stateevent.h
+++ b/lib/events/stateevent.h
@@ -20,8 +20,7 @@
#include "roomevent.h"
-namespace QMatrixClient
-{
+namespace QMatrixClient {
/// Make a minimal correct Matrix state event JSON
template <typename StrT>
@@ -34,13 +33,11 @@ inline QJsonObject basicStateEventJson(StrT matrixType,
{ ContentKey, content } };
}
-class StateEventBase : public RoomEvent
-{
+class StateEventBase : public RoomEvent {
public:
using factory_t = EventFactory<StateEventBase>;
- StateEventBase(Type type, const QJsonObject& json)
- : RoomEvent(type, json)
+ StateEventBase(Type type, const QJsonObject& json) : RoomEvent(type, json)
{}
StateEventBase(Type type, event_mtype_t matrixType,
const QString& stateKey = {},
@@ -71,8 +68,7 @@ inline bool is<StateEventBase>(const Event& e)
using StateEventKey = QPair<QString, QString>;
template <typename ContentT>
-struct Prev
-{
+struct Prev {
template <typename... ContentParamTs>
explicit Prev(const QJsonObject& unsignedJson,
ContentParamTs&&... contentParams)
@@ -86,8 +82,7 @@ struct Prev
};
template <typename ContentT>
-class StateEvent : public StateEventBase
-{
+class StateEvent : public StateEventBase {
public:
using content_type = ContentT;
@@ -135,11 +130,9 @@ private:
};
} // namespace QMatrixClient
-namespace std
-{
+namespace std {
template <>
-struct hash<QMatrixClient::StateEventKey>
-{
+struct hash<QMatrixClient::StateEventKey> {
size_t operator()(const QMatrixClient::StateEventKey& k) const Q_DECL_NOEXCEPT
{
return qHash(k);