We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0a3664 commit e010a10Copy full SHA for e010a10
Source/Common/gdcmFilename.cxx
@@ -17,6 +17,10 @@
17
#include <cstdlib> // realpath
18
#include <cstring>
19
20
+#if defined(_WIN32) && (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__MINGW32__))
21
+#include <windows.h>
22
+#endif
23
+
24
namespace gdcm
25
{
26
@@ -97,7 +101,6 @@ const char *Filename::ToUnixSlashes()
97
101
}
98
102
99
103
#if defined(_WIN32) && (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__MINGW32__))
100
-#include <windows.h>
104
105
inline void Realpath(const char *path, std::string & resolved_path)
106
0 commit comments