diff --git a/lockfree/spsc/bipartite_buf_impl.hpp b/lockfree/spsc/bipartite_buf_impl.hpp index 6e7d2d7..27552d5 100644 --- a/lockfree/spsc/bipartite_buf_impl.hpp +++ b/lockfree/spsc/bipartite_buf_impl.hpp @@ -48,7 +48,7 @@ namespace spsc { template BipartiteBuf::BipartiteBuf() - : _r(0U), _w(0U), _i(0U), _write_wrapped(false), _read_wrapped(false) {} + : _write_wrapped(false), _read_wrapped(false), _r(0U), _w(0U), _i(0U) {} template T *BipartiteBuf::WriteAcquire(const size_t free_required) {