1 Work around -fsanitize=bool and -fsanitize=nonnull-attribute
3 --- boost/algorithm/string/find_iterator.hpp
4 +++ boost/algorithm/string/find_iterator.hpp
6 m_Match(Other.m_Match),
14 --- boost/circular_buffer/debug.hpp
15 +++ boost/circular_buffer/debug.hpp
19 inline void do_fill_uninitialized_memory(T* data, std::size_t size_in_bytes) BOOST_NOEXCEPT {
20 - std::memset(static_cast<void*>(data), UNINITIALIZED, size_in_bytes);
21 + if (size_in_bytes != 0) std::memset(static_cast<void*>(data), UNINITIALIZED, size_in_bytes);