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 /src/Style.cxx | |
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 'src/Style.cxx')
-rw-r--r-- | src/Style.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Style.cxx b/src/Style.cxx index 228b3db74..2c78c5241 100644 --- a/src/Style.cxx +++ b/src/Style.cxx @@ -5,6 +5,8 @@ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. +#include <cstdint> + #include <stdexcept> #include <string_view> #include <vector> |