aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexBaan.cxx
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2017-07-17 15:18:31 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2017-07-17 15:18:31 +1000
commit46d35a2e30079cb7ce690cd60aece17cc00f1de1 (patch)
tree586b2d92f94d0dbf09329bde04caa9f2736d71c3 /lexers/LexBaan.cxx
parent5d888154b02ae8665464bcdfaf89e0be3a582320 (diff)
downloadscintilla-mirror-46d35a2e30079cb7ce690cd60aece17cc00f1de1.tar.gz
Backport: Update types for Unix LP64 after changes to Sci_Position/Sci_PositionU.
Backport of changeset 6352:df1416e3ff3a.
Diffstat (limited to 'lexers/LexBaan.cxx')
-rw-r--r--lexers/LexBaan.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexBaan.cxx b/lexers/LexBaan.cxx
index 23e221918..394c4074e 100644
--- a/lexers/LexBaan.cxx
+++ b/lexers/LexBaan.cxx
@@ -131,7 +131,7 @@ static inline bool IsAnOperator(int ch) {
return false;
}
-static inline int IsAnyOtherIdentifier(char *s, int sLength) {
+static inline int IsAnyOtherIdentifier(char *s, Sci_Position sLength) {
/* IsAnyOtherIdentifier uses standard templates used in baan.
The matching template is shown as comments just above the return condition.