diff options
author | Neil <nyamatongwe@gmail.com> | 2017-06-22 14:09:16 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-06-22 14:09:16 +1000 |
commit | c6b4f3e09572d7c4d88ac418498634f8988fa3f1 (patch) | |
tree | c89df751d61055169d39b4086a09979839b07f6e | |
parent | 65f72e8be173fcabd7fc1f756126f5e2c8c9199b (diff) | |
download | scintilla-mirror-c6b4f3e09572d7c4d88ac418498634f8988fa3f1.tar.gz |
Use same types for CheckLevelCommentLine to allow 64-bit Sci_Position.
-rw-r--r-- | lexers/LexFortran.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexFortran.cxx b/lexers/LexFortran.cxx index 495b00215..7d2141f3d 100644 --- a/lexers/LexFortran.cxx +++ b/lexers/LexFortran.cxx @@ -257,7 +257,7 @@ static void ColouriseFortranDoc(Sci_PositionU startPos, Sci_Position length, int } /***************************************/ static void CheckLevelCommentLine(const unsigned int nComL, - int nComColB[], int nComColF[], int &nComCur, + Sci_Position nComColB[], Sci_Position nComColF[], Sci_Position &nComCur, bool comLineB[], bool comLineF[], bool &comLineCur, int &levelDeltaNext) { levelDeltaNext = 0; |