]> git.lyx.org Git - features.git/commitdiff
Added a std:: declaration
authorAngus Leeming <leeming@lyx.org>
Sun, 2 Sep 2001 12:31:19 +0000 (12:31 +0000)
committerAngus Leeming <leeming@lyx.org>
Sun, 2 Sep 2001 12:31:19 +0000 (12:31 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2654 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/iterators.h

index 9be7853f672d94c9b0223ae705da61cc28ff4041..b31f17b71023bd40bf05be34bec877075c93bc58 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * iterators.h: Added a std:: declaration to the return type of
+       ParIterator::size.
+
 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
 
        * lyxrc.C: add help for view_dvi_paper_option, default to safe
index 148eda029ceabff7a47c8fbdea8794230d70f10a..712e3aed5c2a807bacca41348241902d42c0dfda 100644 (file)
@@ -45,7 +45,7 @@ public:
        ///
        Paragraph * operator*() { return positions.back().par; }
        ///
-       vector<ParPosition>::size_type size() const 
+       std::vector<ParPosition>::size_type size() const 
                { return positions.size(); }
        ///
        friend