reformat code

This commit is contained in:
gabime
2023-09-25 16:19:10 +03:00
parent 1800775b9d
commit f36b2c5f93
28 changed files with 131 additions and 128 deletions

View File

@@ -25,7 +25,8 @@ public:
explicit circular_q(size_t max_items)
: max_items_(max_items + 1) // one item is reserved as marker for full q
, v_(max_items_) {}
,
v_(max_items_) {}
circular_q(const circular_q &) = default;
circular_q &operator=(const circular_q &) = default;