aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-04-14 08:38:31 +1000
committerNeil <nyamatongwe@gmail.com>2018-04-14 08:38:31 +1000
commit50e62c7c057261b8d1bd10c05216486549a9b604 (patch)
tree14d802190dac5ee5b86d96497d5a680b760f918e
parent709919116514bc1d7875042ed70ccb3f797ceb0b (diff)
downloadscintilla-mirror-50e62c7c057261b8d1bd10c05216486549a9b604.tar.gz
Backport: Removed workaround for old releases of MSVC.
Backport of changeset 6686:afae71db79d3.
-rw-r--r--include/Scintilla.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index f09d443db..69105b70e 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -27,12 +27,7 @@ int Scintilla_LinkLexers(void);
#endif
// Include header that defines basic numeric types.
-#if defined(_MSC_VER)
-// Older releases of MSVC did not have stdint.h.
-#include <stddef.h>
-#else
#include <stdint.h>
-#endif
// Define uptr_t, an unsigned integer type large enough to hold a pointer.
typedef uintptr_t uptr_t;