aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2024-11-26 08:19:54 +1100
committerNeil <nyamatongwe@gmail.com>2024-11-26 08:19:54 +1100
commit1beb1d8b049d1bc998c513221ba758b633074d58 (patch)
treee88944887b68b4370734549c72170f61b04472c3 /src
parentb1280b8651fce6be3e020ced53ecb5a17b59a7ab (diff)
downloadscintilla-mirror-1beb1d8b049d1bc998c513221ba758b633074d58.tar.gz
Bug [#2458]. Add include of cstdint to provide intptr_t and uintptr_t.
Diffstat (limited to 'src')
-rw-r--r--src/AutoComplete.cxx1
-rw-r--r--src/CallTip.cxx1
-rw-r--r--src/CellBuffer.cxx1
-rw-r--r--src/ChangeHistory.cxx1
-rw-r--r--src/Decoration.cxx1
-rw-r--r--src/Document.cxx1
-rw-r--r--src/Indicator.cxx1
-rw-r--r--src/KeyMap.cxx1
-rw-r--r--src/LineMarker.cxx1
-rw-r--r--src/PerLine.cxx1
-rw-r--r--src/Style.cxx2
-rw-r--r--src/ViewStyle.cxx1
-rw-r--r--src/XPM.cxx1
13 files changed, 14 insertions, 0 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx
index 2bf88aa23..7189adb3d 100644
--- a/src/AutoComplete.cxx
+++ b/src/AutoComplete.cxx
@@ -7,6 +7,7 @@
#include <cstddef>
#include <cstdlib>
+#include <cstdint>
#include <cassert>
#include <cstring>
#include <cstdio>
diff --git a/src/CallTip.cxx b/src/CallTip.cxx
index a41ba9519..d35bec4ec 100644
--- a/src/CallTip.cxx
+++ b/src/CallTip.cxx
@@ -7,6 +7,7 @@
#include <cstddef>
#include <cstdlib>
+#include <cstdint>
#include <cassert>
#include <cstring>
#include <cstdio>
diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx
index 4985517e0..643929352 100644
--- a/src/CellBuffer.cxx
+++ b/src/CellBuffer.cxx
@@ -7,6 +7,7 @@
#include <cstddef>
#include <cstdlib>
+#include <cstdint>
#include <cassert>
#include <cstring>
#include <cstdio>
diff --git a/src/ChangeHistory.cxx b/src/ChangeHistory.cxx
index d6c93ae39..bd81e3341 100644
--- a/src/ChangeHistory.cxx
+++ b/src/ChangeHistory.cxx
@@ -7,6 +7,7 @@
#include <cstddef>
#include <cstdlib>
+#include <cstdint>
#include <cassert>
#include <stdexcept>
diff --git a/src/Decoration.cxx b/src/Decoration.cxx
index 8d901b9ec..dcd63bb33 100644
--- a/src/Decoration.cxx
+++ b/src/Decoration.cxx
@@ -6,6 +6,7 @@
#include <cstddef>
#include <cstdlib>
+#include <cstdint>
#include <cstring>
#include <cstdio>
#include <cstdarg>
diff --git a/src/Document.cxx b/src/Document.cxx
index 0b34d5e73..188ae658f 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -7,6 +7,7 @@
#include <cstddef>
#include <cstdlib>
+#include <cstdint>
#include <cassert>
#include <cstring>
#include <cstdio>
diff --git a/src/Indicator.cxx b/src/Indicator.cxx
index 5c15caeb6..0a8117f4f 100644
--- a/src/Indicator.cxx
+++ b/src/Indicator.cxx
@@ -5,6 +5,7 @@
// 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 <cmath>
#include <stdexcept>
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx
index da4f242a4..010debdab 100644
--- a/src/KeyMap.cxx
+++ b/src/KeyMap.cxx
@@ -6,6 +6,7 @@
// The License.txt file describes the conditions under which this software may be distributed.
#include <cstdlib>
+#include <cstdint>
#include <stdexcept>
#include <string_view>
diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx
index c13b2495d..0afa64f2b 100644
--- a/src/LineMarker.cxx
+++ b/src/LineMarker.cxx
@@ -5,6 +5,7 @@
// Copyright 1998-2011 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
+#include <cstdint>
#include <cstring>
#include <cmath>
diff --git a/src/PerLine.cxx b/src/PerLine.cxx
index b2e4530ea..b394b4973 100644
--- a/src/PerLine.cxx
+++ b/src/PerLine.cxx
@@ -6,6 +6,7 @@
// The License.txt file describes the conditions under which this software may be distributed.
#include <cstddef>
+#include <cstdint>
#include <cassert>
#include <cstring>
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>
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx
index 921463931..92d084ee6 100644
--- a/src/ViewStyle.cxx
+++ b/src/ViewStyle.cxx
@@ -6,6 +6,7 @@
// The License.txt file describes the conditions under which this software may be distributed.
#include <cstddef>
+#include <cstdint>
#include <cassert>
#include <cstring>
#include <cmath>
diff --git a/src/XPM.cxx b/src/XPM.cxx
index 57c401eed..13b508603 100644
--- a/src/XPM.cxx
+++ b/src/XPM.cxx
@@ -6,6 +6,7 @@
// The License.txt file describes the conditions under which this software may be distributed.
#include <cstdlib>
+#include <cstdint>
#include <cstring>
#include <climits>