From 223e6e1826037b97f01bdcd5fa883ca20629b652 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 10 Dec 2012 15:36:19 +0000 Subject: [PATCH] Encoded URL to remove non-ascii char from source; Refs #7781 [SVN r81824] --- include/boost/algorithm/searching/boyer_moore.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/algorithm/searching/boyer_moore.hpp b/include/boost/algorithm/searching/boyer_moore.hpp index 958f0b8..c5fe9fa 100755 --- a/include/boost/algorithm/searching/boyer_moore.hpp +++ b/include/boost/algorithm/searching/boyer_moore.hpp @@ -33,8 +33,8 @@ References: http://www.cs.utexas.edu/users/moore/best-ideas/string-searching/ http://www.cs.utexas.edu/~moore/publications/fstrpos.pdf -Explanations: boostinspect:noascii (test tool complains) - http://en.wikipedia.org/wiki/Boyer–Moore_string_search_algorithm +Explanations: + http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string_search_algorithm http://www.movsd.com/bm.htm http://www.cs.ucdavis.edu/~gusfield/cs224f09/bnotes.pdf