diff options
| author | Neil <nyamatongwe@gmail.com> | 2024-11-26 08:19:54 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2024-11-26 08:19:54 +1100 |
| commit | 1beb1d8b049d1bc998c513221ba758b633074d58 (patch) | |
| tree | e88944887b68b4370734549c72170f61b04472c3 /win32 | |
| parent | b1280b8651fce6be3e020ced53ecb5a17b59a7ab (diff) | |
| download | scintilla-mirror-1beb1d8b049d1bc998c513221ba758b633074d58.tar.gz | |
Bug [#2458]. Add include of cstdint to provide intptr_t and uintptr_t.
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/PlatWin.cxx | 1 | ||||
| -rw-r--r-- | win32/ScintillaDLL.cxx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 176acab10..30a066083 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -7,6 +7,7 @@ #include <cstddef> #include <cstdlib> +#include <cstdint> #include <cstring> #include <cstdio> #include <cstdarg> diff --git a/win32/ScintillaDLL.cxx b/win32/ScintillaDLL.cxx index 3e448d848..ca2c91add 100644 --- a/win32/ScintillaDLL.cxx +++ b/win32/ScintillaDLL.cxx @@ -5,6 +5,8 @@ // Copyright 1998-2018 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. +#include <cstdint> + #undef _WIN32_WINNT #define _WIN32_WINNT 0x0500 #undef WINVER |
