File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -167,14 +167,14 @@ struct stats {
167167 std::atomic<unsigned int > curr_conns;
168168
169169 size_t getCurrConnections () const {
170- return curr_conns.load (std::memory_order:: memory_order_consume);
170+ return curr_conns.load (std::memory_order_consume);
171171 }
172172
173173 // / The number of system connections
174174 std::atomic<unsigned int > system_conns;
175175
176176 size_t getSystemConnections () const {
177- return system_conns.load (std::memory_order:: memory_order_consume);
177+ return system_conns.load (std::memory_order_consume);
178178 }
179179
180180 size_t getUserConnections () const {
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class DurabilityTimeoutTask : public GlobalTask {
5656 // has its internal sleep-time which is used for a different purpose,
5757 // details in VBCBAdaptor.
5858 cb::AtomicDuration<std::chrono::milliseconds,
59- std::memory_order:: memory_order_seq_cst>
59+ std::memory_order_seq_cst>
6060 sleepTime;
6161};
6262
You can’t perform that action at this time.
0 commit comments