From da262dd9751520c69dd55284009ab188c4a9dd23 Mon Sep 17 00:00:00 2001 From: Don Ho Date: Sat, 30 May 2015 01:26:00 +0200 Subject: [PATCH] [FIX] Fix not compling issue. --- PowerEditor/src/Notepad_plus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/src/Notepad_plus.cpp b/PowerEditor/src/Notepad_plus.cpp index 5c373259..a618c82b 100644 --- a/PowerEditor/src/Notepad_plus.cpp +++ b/PowerEditor/src/Notepad_plus.cpp @@ -6166,7 +6166,7 @@ bool Notepad_plus::undoStreamComment() //-- First, search all start_comment and end_comment before and after the selectionStart and selectionEnd position. const int iSelStart=0, iSelEnd=1; - const size_t N_CMNT = 2 + const size_t N_CMNT = 2; int posStartCommentBefore[N_CMNT], posEndCommentBefore[N_CMNT], posStartCommentAfter[N_CMNT], posEndCommentAfter[N_CMNT]; bool blnStartCommentBefore[N_CMNT], blnEndCommentBefore[N_CMNT], blnStartCommentAfter[N_CMNT], blnEndCommentAfter[N_CMNT]; int posStartComment, posEndComment;