aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-02-20 02:50:41 +0000
committernyamatongwe <devnull@localhost>2002-02-20 02:50:41 +0000
commit57eb6b32e60dafe787f555452a95c37e0dfc232c (patch)
tree8b8c54120a505817961754e6469597471083de7e
parentbec6ad7ca49a4297ff4c6af17db41c56d287ba36 (diff)
downloadscintilla-mirror-57eb6b32e60dafe787f555452a95c37e0dfc232c.tar.gz
Fixed warning on untyped function.
-rw-r--r--src/LexOthers.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx
index f074a046d..0780c357c 100644
--- a/src/LexOthers.cxx
+++ b/src/LexOthers.cxx
@@ -20,7 +20,7 @@
#include "Scintilla.h"
#include "SciLexer.h"
-static inline AtEOL(Accessor &styler, unsigned int i) {
+static inline bool AtEOL(Accessor &styler, unsigned int i) {
return (styler[i] == '\n') ||
((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n'));
}