]> git.lyx.org Git - lyx.git/commitdiff
Add missing std::
authorDekel Tsur <dekelts@tau.ac.il>
Sun, 28 Jan 2001 18:33:17 +0000 (18:33 +0000)
committerDekel Tsur <dekelts@tau.ac.il>
Sun, 28 Jan 2001 18:33:17 +0000 (18:33 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1411 a592a061-630c-0410-9148-cb99ea01b6c8

src/BufferView_pimpl.h

index 7472a32a3614620051f541dc993b8f95ab69c4fb..1a96bd100bf9be810caf7aaede70127f499a10c3 100644 (file)
@@ -160,6 +160,6 @@ private:
                Position(string const & f, int id, int pos)
                         : filename(f), par_id(id), par_pos(pos) {}
        };
-       vector<Position> saved_positions;
+       std::vector<Position> saved_positions;
 };
 #endif