summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2008-04-29 13:24:15 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2008-04-29 13:24:15 +0000
commit2ecc01e841f42177d645cc3e273c7164d2237db1 (patch)
tree2643da08b461ed38d7d493c154c80f5f372dcfbc /ucb
parentd0e519b6be5aa02cb344632909c7220352d24f91 (diff)
#i10000#: fix gcc-4.2.3 warning about using a member with a type withing an anonymous namespace
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/inc/regexpmap.tpt9
1 files changed, 3 insertions, 6 deletions
diff --git a/ucb/source/inc/regexpmap.tpt b/ucb/source/inc/regexpmap.tpt
index 6a8ae4986f..f1bd7dfa0d 100644
--- a/ucb/source/inc/regexpmap.tpt
+++ b/ucb/source/inc/regexpmap.tpt
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: regexpmap.tpt,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -47,8 +47,9 @@
using namespace ucb_impl;
+namespace ucb_impl {
+
//============================================================================
-namespace {
template< typename Val >
struct Entry
@@ -63,16 +64,12 @@ struct Entry
//============================================================================
template< typename Val > class List: public std::list< Entry< Val > > {};
-}
-
//============================================================================
//
// RegexpMapIterImpl
//
//============================================================================
-namespace ucb_impl {
-
template< typename Val >
class RegexpMapIterImpl
{