summaryrefslogtreecommitdiff
path: root/ucb/source/inc
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
commit1d0ea9c7f8e2955294c451c67f65edc6c1b9a590 (patch)
treef535854032ea6393def5cb024a470e4e934026a9 /ucb/source/inc
parentf3c35659ac7b1c8cfe17e42e76ae4451788d45f2 (diff)
#i10000#: fix gcc-4.2.3 warning about using a member with a type withing an anonymous namespace
Diffstat (limited to 'ucb/source/inc')
-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 6a8ae4986fbf..f1bd7dfa0d6f 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
{