]> git.lyx.org Git - features.git/commitdiff
Constify and un-constify
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 6 Nov 2019 09:36:21 +0000 (10:36 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 6 Nov 2019 09:36:21 +0000 (10:36 +0100)
src/Session.cpp

index 394788381ee38bbc6d78a33912677cf02a99c2d3..3bb9c03a330005d0702de9f0d4f00246e4b971ae 100644 (file)
@@ -221,7 +221,7 @@ void LastFilePosSection::save(FilePos const & pos)
 {
        // Remove element if it was already present. Iterating should
        // not be a problem since the list is small (<100 elements).
-       for (FilePosList::const_iterator it = lastfilepos.begin();
+       for (FilePosList::iterator it = lastfilepos.begin();
             it != lastfilepos.end(); ++it)
                if (it->file == pos.file) {
                        lastfilepos.erase(it);
@@ -235,7 +235,7 @@ void LastFilePosSection::save(FilePos const & pos)
 
 LastFilePosSection::FilePos LastFilePosSection::load(FileName const & fname) const
 {
-       for (auto & fp : lastfilepos)
+       for (auto const & fp : lastfilepos)
                if (fp.file == fname)
                        // Has position information, return it.
                        return fp;