Changeset - r20155:12a2a874bafc
[Not reviewed]
master
0 1 0
michi_cc - 11 years ago 2013-03-30 13:50:46
michi_cc@openttd.org
(svn r25128) -Codechange: [Win32] MSVC 2010 comes with stdint.h.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/stdafx.h
Show inline comments
 
@@ -30,7 +30,7 @@
 
 * We need INT64_MAX, which for most systems comes from stdint.h. However, MSVC
 
 * does not have stdint.h and apparently neither does MorphOS.
 
 * For OSX the inclusion is already done in osx_stdafx.h. */
 
#if !defined(__APPLE__) && !defined(_MSC_VER) && !defined(__MORPHOS__)
 
#if !defined(__APPLE__) && (!defined(_MSC_VER) || _MSC_VER >= 1600) && !defined(__MORPHOS__)
 
	#if defined(SUNOS)
 
		/* SunOS/Solaris does not have stdint.h, but inttypes.h defines everything
 
		 * stdint.h defines and we need. */
0 comments (0 inline, 0 general)