id summary reporter owner description type status milestone component version severity resolution keywords cc 7104 [algorithm] compile error boyer_morre_search Akira Takahashi Marshall Clow "compilation error with Range version boost::algorithm::boyer_moore_search. follow code: {{{ #include #include #include int main() { std::string text = ""the stick, and made believe to worry it: then Alice dodged behind a""; std::string pattern = ""behind""; // BM法で文字列検索 decltype(text)::const_iterator it = boost::algorithm::boyer_moore_search(text, pattern); // error! if (it != text.end()) std::cout << ""found"" << std::endl; else std::cout << ""not found"" << std::endl; } }}} Please see attached patch." Bugs closed To Be Determined algorithm Boost 1.50.0 Problem fixed