diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 14:55:41 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 14:55:41 +0000 |
commit | 25843b3d48f0adfccc26ecfedf4f136afd719586 (patch) | |
tree | 07c004578dc22fe30b1ffbf94a342d1736140e9c /ucb/source/inc | |
parent | 041148cb93269e9370f7a0bd9534c6d5409f191d (diff) |
INTEGRATION: CWS ooo20031110 (1.1.134); FILE MERGED
2003/11/04 10:23:35 waratah 1.1.134.1: #i21906# add class after the friend definition required to remove permissive from the gcc compile options
Diffstat (limited to 'ucb/source/inc')
-rw-r--r-- | ucb/source/inc/regexpmap.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/inc/regexpmap.hxx b/ucb/source/inc/regexpmap.hxx index e9af736f33de..915fba3dffb6 100644 --- a/ucb/source/inc/regexpmap.hxx +++ b/ucb/source/inc/regexpmap.hxx @@ -2,9 +2,9 @@ * * $RCSfile: regexpmap.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: kso $ $Date: 2000-10-16 14:53:07 $ + * last change: $Author: rt $ $Date: 2003-12-01 15:55:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -102,8 +102,8 @@ template< typename Val > class RegexpMapIterImpl; template< typename Val > class RegexpMapConstIter { - friend RegexpMap< Val >; // to access m_pImpl, ctor - friend RegexpMapIter< Val >; // to access m_pImpl, ctor + friend class RegexpMap< Val >; // to access m_pImpl, ctor + friend class RegexpMapIter< Val >; // to access m_pImpl, ctor public: RegexpMapConstIter(); @@ -135,7 +135,7 @@ private: template< typename Val > class RegexpMapIter: public RegexpMapConstIter< Val > { - friend RegexpMap< Val >; // to access ctor + friend class RegexpMap< Val >; // to access ctor public: RegexpMapIter() {} |