aboutsummaryrefslogtreecommitdiff
path: root/zenserver/projectstore.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-05-27 19:18:26 +0200
committerStefan Boberg <[email protected]>2021-05-27 19:18:26 +0200
commit9863888606d408c41e9ff89f194102604f40cceb (patch)
tree887abb29dc43385a20a6c7dbe6312734aa2c99ee /zenserver/projectstore.cpp
parentAdded some more diagnostics to potential file operation errors (diff)
downloadzen-9863888606d408c41e9ff89f194102604f40cceb.tar.xz
zen-9863888606d408c41e9ff89f194102604f40cceb.zip
clang-format fixes
Diffstat (limited to 'zenserver/projectstore.cpp')
-rw-r--r--zenserver/projectstore.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/zenserver/projectstore.cpp b/zenserver/projectstore.cpp
index 6cf5dc161..eccaacff5 100644
--- a/zenserver/projectstore.cpp
+++ b/zenserver/projectstore.cpp
@@ -220,14 +220,14 @@ struct ProjectStore::OplogStorage : public RefCounted
spdlog::logger& Log() { return m_OwnerOplog->Log(); }
private:
- ProjectStore::Oplog* m_OwnerOplog;
- std::filesystem::path m_OplogStoragePath;
- RwLock m_RwLock;
- TCasLogFile<OplogEntry> m_Oplog;
- BasicFile m_OpBlobs;
- std::atomic<uint64_t> m_NextOpsOffset{0};
- uint64_t m_OpsAlign = 32;
- std::atomic<uint32_t> m_MaxLsn{0};
+ ProjectStore::Oplog* m_OwnerOplog;
+ std::filesystem::path m_OplogStoragePath;
+ RwLock m_RwLock;
+ TCasLogFile<OplogEntry> m_Oplog;
+ BasicFile m_OpBlobs;
+ std::atomic<uint64_t> m_NextOpsOffset{0};
+ uint64_t m_OpsAlign = 32;
+ std::atomic<uint32_t> m_MaxLsn{0};
#if USE_ROCKSDB
std::unique_ptr<rocksdb::DB> m_RocksDb;