Kaydet (Commit) 1d0ea9c7 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

#i10000#: fix gcc-4.2.3 warning about using a member with a type withing an anonymous namespace

üst f3c35659
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite * OpenOffice.org - a multi-platform office productivity suite
* *
* $RCSfile: regexpmap.tpt,v $ * $RCSfile: regexpmap.tpt,v $
* $Revision: 1.7 $ * $Revision: 1.8 $
* *
* This file is part of OpenOffice.org. * This file is part of OpenOffice.org.
* *
...@@ -47,8 +47,9 @@ ...@@ -47,8 +47,9 @@
using namespace ucb_impl; using namespace ucb_impl;
namespace ucb_impl {
//============================================================================ //============================================================================
namespace {
template< typename Val > template< typename Val >
struct Entry struct Entry
...@@ -63,16 +64,12 @@ struct Entry ...@@ -63,16 +64,12 @@ struct Entry
//============================================================================ //============================================================================
template< typename Val > class List: public std::list< Entry< Val > > {}; template< typename Val > class List: public std::list< Entry< Val > > {};
}
//============================================================================ //============================================================================
// //
// RegexpMapIterImpl // RegexpMapIterImpl
// //
//============================================================================ //============================================================================
namespace ucb_impl {
template< typename Val > template< typename Val >
class RegexpMapIterImpl class RegexpMapIterImpl
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment