diff src/main.cpp @ 112:9daf778feaf1 1.4

Fix usage of WIN32 macro. With c++11 this is no longer set. _WIN32 is the better macro to use anyway.
author Andre Heinecke <andre.heinecke@intevation.de>
date Thu, 08 Dec 2016 15:34:07 +0100
parents a9a343271490
children
line wrap: on
line diff
--- a/src/main.cpp	Thu Dec 08 15:25:08 2016 +0100
+++ b/src/main.cpp	Thu Dec 08 15:34:07 2016 +0100
@@ -62,7 +62,7 @@
 
 int realMain(int argc, char **argv);
 
-#if defined(WIN32) && defined(UNICODE)
+#if defined(_WIN32) && defined(UNICODE)
 
 /** @brief Unicode entry point.
  *
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)