From: Scott Cantor Date: Thu, 26 Jan 2012 15:02:29 +0000 (+0000) Subject: Avoid use of newer iterator methods X-Git-Tag: 1.5.0~34 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-xmltooling.git;a=commitdiff_plain;h=601093704f00c63a7505b748a5647abd16011be9 Avoid use of newer iterator methods --- diff --git a/xmltooling/io/HTTPRequest.cpp b/xmltooling/io/HTTPRequest.cpp index 6f97384..a068a58 100644 --- a/xmltooling/io/HTTPRequest.cpp +++ b/xmltooling/io/HTTPRequest.cpp @@ -43,7 +43,7 @@ using namespace std; bool GenericRequest::m_langFromClient = true; GenericRequest::langrange_t GenericRequest::m_defaultRange; -GenericRequest::GenericRequest() : m_langRangeIter(m_langRange.crend()) +GenericRequest::GenericRequest() : m_langRangeIter(m_langRange.rend()) { }