]> git.lyx.org Git - features.git/commitdiff
cosmetics
authorAbdelrazak Younes <younes@lyx.org>
Fri, 8 Feb 2008 18:02:27 +0000 (18:02 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Fri, 8 Feb 2008 18:02:27 +0000 (18:02 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22872 a592a061-630c-0410-9148-cb99ea01b6c8

src/Encoding.cpp

index c4319ed66bd406e0a6a3f5c904238b2060366d57..e4160988687809db2b57843d08adbb84fa371fe3 100644 (file)
@@ -355,9 +355,9 @@ set<char_type> Encoding::getSymbolsList() const
                symbols.insert(c);
        // now the ones from the unicodesymbols file
        CharInfoMap::const_iterator const end = unicodesymbols.end();
-       for (CharInfoMap::const_iterator it = unicodesymbols.begin(); it != end; ++it) {
+       CharInfoMap::const_iterator it = unicodesymbols.begin();
+       for (; it != end; ++it)
                symbols.insert(it->first);
-       }
        return symbols;
 }