aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-05-04 13:15:44 +0000
committernyamatongwe <devnull@localhost>2005-05-04 13:15:44 +0000
commitf21a73ceb4a162722ecc9c50adb49bbcbdcbdf21 (patch)
treee7400f601ff821e3cc1879869b623b473fdc0a9f /src
parentf3347d829ffff834752ab4f4cf1e990ab45e42a8 (diff)
downloadscintilla-mirror-f21a73ceb4a162722ecc9c50adb49bbcbdcbdf21.tar.gz
Avoid warning.
Diffstat (limited to 'src')
-rw-r--r--src/LexSmalltalk.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/LexSmalltalk.cxx b/src/LexSmalltalk.cxx
index 159390041..8fc450ec9 100644
--- a/src/LexSmalltalk.cxx
+++ b/src/LexSmalltalk.cxx
@@ -246,7 +246,6 @@ static void handleLetter(StyleContext& sc)
ident[0] = static_cast<char>(sc.ch);
il = 1;
- doubleColonPresent;
while (isAlphaNumeric(sc.chNext)) {
ident[il++] = static_cast<char>(sc.chNext);
sc.Forward();