Author: yuri
Date: 2010-12-28 10:30:48 -0800 (Tue, 28 Dec 2010)
New Revision: 8131
Log:
fix MSVC includes


Modified:
   branches/branch-1.3/FL/Fl_Widget.H

Modified: branches/branch-1.3/FL/Fl_Widget.H
===================================================================
--- branches/branch-1.3/FL/Fl_Widget.H  2010-12-28 18:14:59 UTC (rev 8130)
+++ branches/branch-1.3/FL/Fl_Widget.H  2010-12-28 18:30:48 UTC (rev 8131)
@@ -37,7 +37,11 @@
   \todo        typedef's fl_intptr_t and fl_uintptr_t should be documented.
 */
 #ifdef _WIN64
+#ifdef __GNUC__
 #include <stdint.h>
+#else
+#include <stddef.h>  // M$VC
+#endif
 typedef intptr_t fl_intptr_t;
 typedef uintptr_t fl_uintptr_t;
 #else

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to