From 2925efd2fcef1f8b9fd48979144877c1a5ec214b Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Tue, 17 Sep 2013 11:01:33 +0200 Subject: Remove C++11 requirement in WebKit2 Removes all use of C++11 specific features in WebKit2. This consists of template> syntax, a few uses of auto, and a single use of std::move. Change-Id: I1bbd356c430802caf5f7440cd0d3bb2ba49ed098 Reviewed-by: Allan Sandfeld Jensen --- Source/WebKit2/WebProcess/WebPage/FindController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/WebKit2/WebProcess/WebPage/FindController.cpp') diff --git a/Source/WebKit2/WebProcess/WebPage/FindController.cpp b/Source/WebKit2/WebProcess/WebPage/FindController.cpp index 9773cee89..1f8eca8e8 100644 --- a/Source/WebKit2/WebProcess/WebPage/FindController.cpp +++ b/Source/WebKit2/WebProcess/WebPage/FindController.cpp @@ -189,7 +189,7 @@ void FindController::findStringMatches(const String& string, FindOptions options m_webPage->corePage()->findStringMatchingRanges(string, core(options), maxMatchCount, &m_findMatches, indexForSelection); - Vector> matchRects; + Vector > matchRects; for (size_t i = 0; i < m_findMatches.size(); ++i) { Vector rects; m_findMatches[i]->textRects(rects); -- cgit v1.2.1