From 57eb6b32e60dafe787f555452a95c37e0dfc232c Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 20 Feb 2002 02:50:41 +0000 Subject: Fixed warning on untyped function. --- src/LexOthers.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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')); } -- cgit v1.2.3