Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystianD committed Aug 3, 2022
1 parent 83b7f04 commit a9e8a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/uvpp/include/uvpp/utils/_uvpp_ring_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RingBuffer {
size_t count = 0;

public:
RingBuffer(size_t size) { buffer.resize(size); }
explicit RingBuffer(size_t size) { buffer.resize(size); }

RingBuffer(RingBuffer&) noexcept = delete;
RingBuffer& operator=(RingBuffer&) noexcept = delete;
Expand Down

0 comments on commit a9e8a8f

Please sign in to comment.