Changes between Initial Version and Version 2 of Ticket #11609
- Timestamp:
- Sep 2, 2015, 5:54:42 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11609
- Property Owner set to
- Property Component None → circular_buffer
-
Ticket #11609 – Description
initial v2 3 3 Example code that works fine without debug mode, but will run into a failed assertion in debug mode: 4 4 5 6 {{{ 5 7 #define BOOST_CB_ENABLE_DEBUG 6 8 #include <boost/circular_buffer.hpp> … … 19 21 std::cout << "elem=" << *bufIter << std::endl; // ERROR: Causes "Assertion `is_valid(m_buff)' failed." 20 22 } 23 }}} 24