From: Adam Dickmeiss Date: Mon, 9 Jan 2006 14:47:09 +0000 (+0000) Subject: Qualify type with NS scope (apparently a difference between VS and GCC). X-Git-Tag: YP2.0.0.2~111 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=5356c34ec280253d43e02dfe38b2c0be4e17d79a;p=metaproxy-moved-to-github.git Qualify type with NS scope (apparently a difference between VS and GCC). --- diff --git a/src/filter_log.cpp b/src/filter_log.cpp index 86ee793..36cbc75 100644 --- a/src/filter_log.cpp +++ b/src/filter_log.cpp @@ -1,4 +1,4 @@ -/* $Id: filter_log.cpp,v 1.11 2006-01-04 11:55:31 adam Exp $ +/* $Id: filter_log.cpp,v 1.12 2006-01-09 14:47:09 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -44,7 +44,7 @@ yf::Log::Log() : m_p(new Rep) yf::Log::~Log() {} -void yf::Log::process(Package &package) const +void yf::Log::process(yp2::Package &package) const { Z_GDU *gdu; diff --git a/src/filter_template.cpp b/src/filter_template.cpp index 2aced06..99d9c57 100644 --- a/src/filter_template.cpp +++ b/src/filter_template.cpp @@ -1,4 +1,4 @@ -/* $Id: filter_template.cpp,v 1.4 2006-01-04 11:55:31 adam Exp $ +/* $Id: filter_template.cpp,v 1.5 2006-01-09 14:47:09 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -37,7 +37,7 @@ yf::Template::~Template() { // must have a destructor because of boost::scoped_ptr } -void yf::Template::process(Package &package) const +void yf::Template::process(yp2::Package &package) const { // Z_GDU *gdu = package.request().get(); package.move();