From: g0dil Date: Wed, 30 Apr 2008 08:25:03 +0000 (+0000) Subject: Utils/Logger: Fix the bugfix .. outch ... X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=345f95ca91ab48a8333fbdabb515b16e8d6d8a5d;p=senf.git Utils/Logger: Fix the bugfix .. outch ... git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@831 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Utils/Logger/Target.ih b/Utils/Logger/Target.ih index d80902e..9ef0e0e 100644 --- a/Utils/Logger/Target.ih +++ b/Utils/Logger/Target.ih @@ -87,7 +87,7 @@ namespace detail { // For g++ 4.0 (at least) we need to provide the fully scoped name for this default value. // no idea why. It works without the scope in 4.1 template < class T, class A2, class A1, - unsigned type = SENF_MPL_RV( senf::Log::detail::RouteParameterCheck_(static_cast(0)) ) > + unsigned type = SENF_MPL_RV( senf::log::detail::RouteParameterCheck_(static_cast(0)) ) > struct RouteParameters {}; @@ -113,7 +113,7 @@ namespace detail { : public RouteParameters { typedef RouteParameters base; - BOOST_STATIC_ASSERT( boost::is_same::value ); + BOOST_STATIC_ASSERT(( boost::is_same::value )); typedef T Stream; }; @@ -122,7 +122,7 @@ namespace detail { : public RouteParameters { typedef RouteParameters base; - BOOST_STATIC_ASSERT( boost::is_same::value ); + BOOST_STATIC_ASSERT(( boost::is_same::value )); typedef T Area; }; @@ -131,7 +131,7 @@ namespace detail { : public RouteParameters { typedef RouteParameters base; - BOOST_STATIC_ASSERT( boost::is_same::value ); + BOOST_STATIC_ASSERT(( boost::is_same::value )); typedef typename T::SENFLogArea Area; }; @@ -140,7 +140,7 @@ namespace detail { : public RouteParameters { typedef RouteParameters base; - BOOST_STATIC_ASSERT( boost::is_same::value ); + BOOST_STATIC_ASSERT(( boost::is_same::value )); typedef T Level; };