summaryrefslogtreecommitdiffstats
path: root/src/Cache.cc
diff options
context:
space:
mode:
authorBenjamin Saunders <ben.e.saunders@gmail.com>2017-11-05 13:04:55 -0800
committermujx <mujx@users.noreply.github.com>2017-11-05 23:04:55 +0200
commit5bd5555a51f52293853e4b4f5dc15dd1c7774538 (patch)
treee77e082ff0cd94f1543d64ff10be703c8b452e73 /src/Cache.cc
parent4ccb5ed81f1787a3cca12e5ca705fad4e3fa8ca5 (diff)
Use C++11 braced list style (#121)
Diffstat (limited to 'src/Cache.cc')
-rw-r--r--src/Cache.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Cache.cc b/src/Cache.cc
index 99267343..dc2c8a9f 100644
--- a/src/Cache.cc
+++ b/src/Cache.cc
@@ -31,11 +31,11 @@ static const lmdb::val NEXT_BATCH_KEY("next_batch");
static const lmdb::val transactionID("transaction_id");
Cache::Cache(const QString &userId)
- : env_{ nullptr }
- , stateDb_{ 0 }
- , roomDb_{ 0 }
- , isMounted_{ false }
- , userId_{ userId }
+ : env_{nullptr}
+ , stateDb_{0}
+ , roomDb_{0}
+ , isMounted_{false}
+ , userId_{userId}
{}
void