aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PositionCache.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2008-12-23 11:33:11 +0000
committernyamatongwe <unknown>2008-12-23 11:33:11 +0000
commitdd8505c0d64e2f2d42f7aeef761ca2fb42b01190 (patch)
tree2536da04441658778684c6819358ae79c7bb2b7f /src/PositionCache.cxx
parentf797cc6b8ca81530565c989d40ac9bc2b1952465 (diff)
downloadscintilla-mirror-dd8505c0d64e2f2d42f7aeef761ca2fb42b01190.tar.gz
Avoid warnings with gcc 4.3
Diffstat (limited to 'src/PositionCache.cxx')
-rw-r--r--src/PositionCache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx
index f40a15378..d9fb9a783 100644
--- a/src/PositionCache.cxx
+++ b/src/PositionCache.cxx
@@ -126,8 +126,8 @@ int LineLayout::LineLastVisible(int line) const {
}
bool LineLayout::InLine(int offset, int line) const {
- return ((offset >= LineStart(line)) && (offset < LineStart(line + 1)) ||
- ((offset == numCharsInLine) && (line == (lines-1))));
+ return ((offset >= LineStart(line)) && (offset < LineStart(line + 1))) ||
+ ((offset == numCharsInLine) && (line == (lines-1)));
}
void LineLayout::SetLineStart(int line, int start) {