diff options
| author | Stefan Boberg <[email protected]> | 2021-05-27 19:18:26 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-05-27 19:18:26 +0200 |
| commit | 9863888606d408c41e9ff89f194102604f40cceb (patch) | |
| tree | 887abb29dc43385a20a6c7dbe6312734aa2c99ee /zenserver/projectstore.cpp | |
| parent | Added some more diagnostics to potential file operation errors (diff) | |
| download | zen-9863888606d408c41e9ff89f194102604f40cceb.tar.xz zen-9863888606d408c41e9ff89f194102604f40cceb.zip | |
clang-format fixes
Diffstat (limited to 'zenserver/projectstore.cpp')
| -rw-r--r-- | zenserver/projectstore.cpp | 16 |
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; |