blob: 6ff6649dd1eed7f164c06df08844fb27cf956d3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Work around -fsanitize=bool
--- boost/algorithm/string/find_iterator.hpp
+++ boost/algorithm/string/find_iterator.hpp
@@ -240,7 +240,7 @@
m_Match(Other.m_Match),
m_Next(Other.m_Next),
m_End(Other.m_End),
- m_bEof(Other.m_bEof)
+ m_bEof(Other.eof())
{}
//! Constructor
|