[cpp-xmltooling COMMIT] /branches/REL_1/xmltooling/io/HTTPRequest.cpp

noreply at shibboleth.net noreply at shibboleth.net
Thu Jan 26 15:02:29 GMT 2012


Author: scantor
Date: Thu Jan 26 15:02:29 2012
New Revision: 957

URL: http://svn.shibboleth.net/view/cpp-xmltooling?rev=957&view=rev
Log:
Avoid use of newer iterator methods

Modified:
    branches/REL_1/xmltooling/io/HTTPRequest.cpp

Modified: branches/REL_1/xmltooling/io/HTTPRequest.cpp
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/io/HTTPRequest.cpp?rev=957&r1=956&r2=957&view=diff
==============================================================================
--- branches/REL_1/xmltooling/io/HTTPRequest.cpp (original)
+++ branches/REL_1/xmltooling/io/HTTPRequest.cpp Thu Jan 26 15:02:29 2012
@@ -43,7 +43,7 @@
 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())
 {
 }
 



More information about the commits mailing list