summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-12-12 14:04:22 +0000
committerKurt Zenker <kz@openoffice.org>2007-12-12 14:04:22 +0000
commit1b91d5979a3cd6fb547c83831bed7ff30158b57e (patch)
tree304ea8588709975f13ddbe9dc1ad598d216298b6 /cosv
parent5f89d2a2993f9a697a08b7da2f4e651fc3366f6f (diff)
INTEGRATION: CWS cmcfixes39 (1.2.4); FILE MERGED
2007/11/20 09:39:53 cmc 1.2.4.1: #i83486# stlportism -> stl
Diffstat (limited to 'cosv')
-rw-r--r--cosv/inc/cosv/tpl/vvector.hxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/cosv/inc/cosv/tpl/vvector.hxx b/cosv/inc/cosv/tpl/vvector.hxx
index 8389fe428063..3f4d54a8bead 100644
--- a/cosv/inc/cosv/tpl/vvector.hxx
+++ b/cosv/inc/cosv/tpl/vvector.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: vvector.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2007-11-02 17:45:03 $
+ * last change: $Author: kz $ $Date: 2007-12-12 15:04:22 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -208,9 +208,8 @@ class VirtualVector<XX,PTRDEL>::
// This derivation provides type information for the STL
// It introduces the types "value_type" and "difference_type".
- : public std::random_access_iterator<
- const XX,
- typename VirtualVector<XX,PTRDEL>::difference_type>
+ : public std::iterator<std::random_access_iterator_tag,
+ const XX>
{
public:
typedef VirtualVector<XX,PTRDEL> my_container;
@@ -304,9 +303,8 @@ class VirtualVector<XX,PTRDEL>::
// This derivation provides type information for the STL
// It introduces the types "value_type" and "difference_type".
- : public std::random_access_iterator<
- XX,
- typename VirtualVector<XX,PTRDEL>::difference_type>
+ : public std::iterator<std::random_access_iterator_tag,
+ XX>
{
public:
typedef VirtualVector<XX,PTRDEL> my_container;