From: Angus Leeming Date: Sun, 2 Sep 2001 12:31:19 +0000 (+0000) Subject: Added a std:: declaration X-Git-Tag: 1.6.10~20692 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=55d1da0faab53744d514d97810ef4882a387e266;p=features.git Added a std:: declaration git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2654 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 9be7853f67..b31f17b710 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-09-02 Angus Leeming + + * iterators.h: Added a std:: declaration to the return type of + ParIterator::size. + 2001-08-31 John Levon * lyxrc.C: add help for view_dvi_paper_option, default to safe diff --git a/src/iterators.h b/src/iterators.h index 148eda029c..712e3aed5c 100644 --- a/src/iterators.h +++ b/src/iterators.h @@ -45,7 +45,7 @@ public: /// Paragraph * operator*() { return positions.back().par; } /// - vector::size_type size() const + std::vector::size_type size() const { return positions.size(); } /// friend