Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MJPA/SimpleJSON.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorq66 <quaker66@gmail.com>2011-05-02 23:58:29 +0400
committerq66 <quaker66@gmail.com>2011-05-02 23:58:29 +0400
commit99c51f3b6e51aaa824df9e4bfc9bf1eedd726b26 (patch)
tree62b54206246a1839f61b72f891200ba8e6e77bf4 /src
parentdc920e9c8abf8489062b0fd190632736d90b5cfc (diff)
MinGW fix.
Diffstat (limited to 'src')
-rw-r--r--src/JSON.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JSON.h b/src/JSON.h
index 2005da6..ab06c18 100644
--- a/src/JSON.h
+++ b/src/JSON.h
@@ -37,7 +37,7 @@
#include <map>
// Linux compile fix - from quaker66
-#ifndef WIN32
+#ifdef __GNUC__
#include <cstring>
#include <cstdlib>
#endif