From c5c17747cb2c7ccab44350c6e560061636167d75 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Wed, 8 Jan 2014 12:13:26 +0000 Subject: [PATCH] Fixed linux compilation. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14968 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/online/request.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/online/request.hpp b/src/online/request.hpp index f80bc4b03..8e0423cc5 100644 --- a/src/online/request.hpp +++ b/src/online/request.hpp @@ -260,7 +260,7 @@ namespace Online{ * \pre request has to be done * \return get the result string from the request reply */ - const std::string & HTTPRequest::getData() const + const std::string & getData() const { assert(hasBeenExecuted()); return m_string_buffer; @@ -337,7 +337,7 @@ namespace Online{ * \pre request has to be executed. * \return get the complete result from the request reply. */ - const XMLNode * XMLRequest::getXMLData() const + const XMLNode * getXMLData() const { assert(hasBeenExecuted()); return m_xml_data; @@ -349,7 +349,7 @@ namespace Online{ * \pre request had to be executed. * \return get the info from the request reply */ - const irr::core::stringw & XMLRequest::getInfo() const + const irr::core::stringw & getInfo() const { assert(hasBeenExecuted()); return m_info;