ringbuf icon indicating copy to clipboard operation
ringbuf copied to clipboard

An STL-like ring buffer for C++11.

Results 2 ringbuf issues
Sort by recently updated
recently updated
newest added

```c++ TYPED_TEST(ContainerReqsGeneral, MoveAssignment) { this->a_ = this->rv_; EXPECT_THAT(this->a_, testing::ContainerEq(this->r_)); } ``` doesn't actually perform move assignment, and it's probably not the only one where I made this mistake

A second implementation with run-time size.