summaryrefslogtreecommitdiff
path: root/src/httpfetch.cpp
diff options
context:
space:
mode:
authorBlockMen <nmuelll@web.de>2013-12-16 01:13:08 +0100
committerBlockMen <nmuelll@web.de>2013-12-16 01:13:08 +0100
commitc9ac9992c7a8addc4839fdcc379cc2a757c60fc0 (patch)
treea281278b62b6ce619fa531b4232c7126556fd612 /src/httpfetch.cpp
parent3946d2a504fd1b4c11f11205ef9f60f40f52942b (diff)
downloadminetest-c9ac9992c7a8addc4839fdcc379cc2a757c60fc0.tar.gz
minetest-c9ac9992c7a8addc4839fdcc379cc2a757c60fc0.tar.bz2
minetest-c9ac9992c7a8addc4839fdcc379cc2a757c60fc0.zip
Fix MSVC compiling issue
Diffstat (limited to 'src/httpfetch.cpp')
-rw-r--r--src/httpfetch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpfetch.cpp b/src/httpfetch.cpp
index 12e203ef2..6c073c8e6 100644
--- a/src/httpfetch.cpp
+++ b/src/httpfetch.cpp
@@ -17,6 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#include "socket.h" // for select()
#include "httpfetch.h"
#include <iostream>
#include <sstream>
@@ -30,7 +31,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "log.h"
#include "util/container.h"
#include "util/thread.h"
-#include "socket.h" // for select()
JMutex g_httpfetch_mutex;
std::map<unsigned long, std::list<HTTPFetchResult> > g_httpfetch_results;