Kaydet (Commit) 81448039 authored tarafından Kristian Rietveld's avatar Kristian Rietveld Kaydeden (comit) Stephan Bergmann

Also use .NET2003 build fix for Clang

üst c31d7b01
...@@ -64,12 +64,12 @@ ...@@ -64,12 +64,12 @@
return aReturn; \ return aReturn; \
} }
#if defined (_MSC_VER) && (_MSC_VER <= 1310) #if (defined (_MSC_VER) && (_MSC_VER <= 1310)) || defined (__clang__)
// Windows .Net2003 build fix // Windows .Net2003 build fix
#define W3K_EXPLICIT_CAST(x) static_cast <XWindow2*> (&x) #define W3K_EXPLICIT_CAST(x) static_cast <XWindow2*> (&x)
#else // !(defined (_MSC_VER) && (_MSC_VER <= 1310)) #else // !((defined (_MSC_VER) && (_MSC_VER <= 1310)) || defined (__clang__))
#define W3K_EXPLICIT_CAST(x) x #define W3K_EXPLICIT_CAST(x) x
#endif // !(defined (_MSC_VER) && (_MSC_VER <= 1310)) #endif // !((defined (_MSC_VER) && (_MSC_VER <= 1310)) || defined (__clang__))
#endif /* AWT_FORWARD_HXX */ #endif /* AWT_FORWARD_HXX */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment