Removed compiler warnings about order of initialisations.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8624 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2011-05-17 05:32:36 +00:00
parent 9bdc12ba95
commit 7fb3a6fb0b

View File

@@ -62,10 +62,10 @@ NetworkHttp *network_http=NULL;
* since the user might trigger another save in the menu (potentially
* ending up with an corrupted file).
*/
NetworkHttp::NetworkHttp() : m_abort(false),
m_thread_id(NULL),
m_current_request(NULL),
m_all_requests(std::vector<Request*>())
NetworkHttp::NetworkHttp() : m_all_requests(std::vector<Request*>()),
m_current_request(NULL),
m_abort(false),
m_thread_id(NULL)
{
// Don't even start the network threads if networking is disabled.
if(UserConfigParams::m_internet_status!=NetworkHttp::IPERM_ALLOWED )