aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexForth.cxx
diff options
context:
space:
mode:
authorJoe Mueller <devnull@localhost>2015-07-30 14:35:17 +1000
committerJoe Mueller <devnull@localhost>2015-07-30 14:35:17 +1000
commit96229bb5f01e86efe382523e1ee79ff23bdcc8e0 (patch)
tree5aa3c8becad92a397b02445001383e188070f287 /lexers/LexForth.cxx
parent7604a6b2a98fc2250408368eb51f8f6827d888c8 (diff)
downloadscintilla-mirror-96229bb5f01e86efe382523e1ee79ff23bdcc8e0.tar.gz
Use Sci_Position / Sci_PositionU for variables in lexers that represent
positions and line numbers and may be widened to 64-bits in a future release.
Diffstat (limited to 'lexers/LexForth.cxx')
-rw-r--r--lexers/LexForth.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexForth.cxx b/lexers/LexForth.cxx
index 9e9c3b540..63d3f4f6d 100644
--- a/lexers/LexForth.cxx
+++ b/lexers/LexForth.cxx
@@ -151,7 +151,7 @@ static void ColouriseForthDoc(Sci_PositionU startPos, Sci_Position length, int i
sc.Complete();
}
-static void FoldForthDoc(unsigned int, int, int, WordList *[],
+static void FoldForthDoc(Sci_PositionU, Sci_Position, int, WordList *[],
Accessor &) {
}