aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-02-20 02:50:41 +0000
committernyamatongwe <unknown>2002-02-20 02:50:41 +0000
commit544250f03387dd2e91d8914c117240c72aa025ed (patch)
tree8b8c54120a505817961754e6469597471083de7e /src
parent1325b8082fdd65826886cf5cd0e0eb47490fe63c (diff)
downloadscintilla-mirror-544250f03387dd2e91d8914c117240c72aa025ed.tar.gz
Fixed warning on untyped function.
Diffstat (limited to 'src')
-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'));
}