Opened 8 years ago
Closed 8 years ago
#11050 closed Bugs (fixed)
compile_time_sized_ringbuffer consume_all has incorrect signature
Reported by: | Owned by: | timblechmann | |
---|---|---|---|
Milestone: | To Be Determined | Component: | lockfree |
Version: | Boost 1.57.0 | Severity: | Problem |
Keywords: | Cc: |
Description
bool consume_all(Functor & f) should be size_t consume_all(Functor & f) bool consume_all(Functor const & f) should be size_t consume_all(Functor const & f)
Change History (3)
comment:1 by , 8 years ago
comment:2 by , 8 years ago
I was just noting that the current signature used "bool" instead of "size_t". The const Functor is already in the code
however, it looks like this is fixed in github, just broken in 1.57, so this ticket can close (not sure how to do that)
comment:3 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
why the const Functor?