diff options
author | nyamatongwe <unknown> | 2010-11-03 10:33:36 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-11-03 10:33:36 +1100 |
commit | 4ecdef0b2a77ca753be3397bc4e41d05c5e72376 (patch) | |
tree | f36bee2df0a929b44f0fb709e5fa0c542ef45450 /src/Editor.cxx | |
parent | 39b9068991076a101840957f1dcf32331ab57eb1 (diff) | |
download | scintilla-mirror-4ecdef0b2a77ca753be3397bc4e41d05c5e72376.tar.gz |
Avoid warning for unused assignment.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 1d2e2ac9a..0b78f8f0a 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2042,7 +2042,7 @@ void Editor::LayoutLine(int line, Surface *surface, ViewStyle &vstyle, LineLayou ll->edgeColumn = -1; } - char styleByte = 0; + char styleByte; const int styleMask = pdoc->stylingBitsMask; ll->styleBitsSet = 0; // Fill base line layout |