Your message dated Tue, 9 Aug 2005 20:18:30 +0100 with message-id <[EMAIL PROTECTED]> and subject line Removed has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 3 Aug 2004 22:25:07 +0000 >From [EMAIL PROTECTED] Tue Aug 03 15:25:07 2004 Return-path: <[EMAIL PROTECTED]> Received: from c204114.adsl.hansenet.de (localhost) [213.39.204.114] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Bs7iV-0007qQ-00; Tue, 03 Aug 2004 15:25:07 -0700 Received: from aj by localhost with local (Exim 4.34) id 1Bs7iT-0002UO-7u; Wed, 04 Aug 2004 00:25:05 +0200 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: libtagcoll: FTBFS with gcc-3.4: there are no arguments to `end' that depend on a template parameter, so a declaration of `end' must be available Message-Id: <[EMAIL PROTECTED]> Date: Wed, 04 Aug 2004 00:25:05 +0200 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-6.1 required=4.0 tests=BAYES_00,HAS_PACKAGE, REMOVE_REMOVAL_2WORD autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Package: libtagcoll Severity: normal Tags: patch When building 'libtagcoll' with gcc-3.4 I get the following error: g++ -DHAVE_CONFIG_H -I. -I. -I.. -g -Wall -O2 -Wall -MT UnfacetedRemover.lo -MD -MP -MF .deps/UnfacetedRemover.Tpo -c UnfacetedRemover.cc -fPIC -DPIC -o .libs/UnfacetedRemover.o UnfacetedRemover.cc: In member function `virtual void Tagcoll::UnfacetedRemover<ITEM>::consume(const ITEM&)': UnfacetedRemover.cc:31: error: `consumer' undeclared (first use this function) UnfacetedRemover.cc:31: error: (Each undeclared identifier is reported only once for each function it appears in.) UnfacetedRemover.cc: In member function `virtual void Tagcoll::UnfacetedRemover<ITEM>::consume(const ITEM&, const Tagcoll::OpSet<std::string>&)': UnfacetedRemover.cc:44: error: `consumer' undeclared (first use this function) UnfacetedRemover.cc: In member function `virtual void Tagcoll::UnfacetedRemover<ITEM>::consume(const Tagcoll::OpSet<ITEM>&)': UnfacetedRemover.cc:53: error: `consumer' undeclared (first use this function) UnfacetedRemover.cc: In member function `virtual void Tagcoll::UnfacetedRemover<ITEM>::consume(const Tagcoll::OpSet<ITEM>&, const Tagcoll::OpSet<std::string>&)': UnfacetedRemover.cc:67: error: `consumer' undeclared (first use this function) make[4]: *** [UnfacetedRemover.lo] Error 1 make[4]: Leaving directory `/libtagcoll-0.99/tagcoll' With the attached patch 'libtagcoll' can be compiled using gcc-3.4. Regards Andreas Jochens diff -urN ../tmp-orig/libtagcoll-0.99/tagcoll/TagConsumer.h ./tagcoll/TagConsumer.h --- ../tmp-orig/libtagcoll-0.99/tagcoll/TagConsumer.h 2004-08-01 20:40:05.000000000 +0200 +++ ./tagcoll/TagConsumer.h 2004-08-04 00:10:16.905755028 +0200 @@ -70,7 +70,7 @@ virtual void consume(const ITEM& item) throw () { if (matcher.match(item)) - next.consume(item); + this->next.consume(item); } }; diff -urN ../tmp-orig/libtagcoll-0.99/tagcoll/UnfacetedRemover.cc ./tagcoll/UnfacetedRemover.cc --- ../tmp-orig/libtagcoll-0.99/tagcoll/UnfacetedRemover.cc 2004-08-01 20:40:05.000000000 +0200 +++ ./tagcoll/UnfacetedRemover.cc 2004-08-04 00:09:50.799806135 +0200 @@ -28,7 +28,7 @@ template<class ITEM> void UnfacetedRemover<ITEM>::consume(const ITEM& item) throw () { - consumer->consume(item); + this->consumer->consume(item); } template<class ITEM> @@ -41,16 +41,16 @@ patched += *i; if (patched.size()) - consumer->consume(item, patched); + this->consumer->consume(item, patched); else - consumer->consume(item); + this->consumer->consume(item); } // Process a set of items, all with no tags template<class ITEM> void UnfacetedRemover<ITEM>::consume(const OpSet<ITEM>& items) throw () { - consumer->consume(items); + this->consumer->consume(items); } // Process a set of items identically tagged, with their tags @@ -64,9 +64,9 @@ patched += *i; if (patched.size()) - consumer->consume(items, patched); + this->consumer->consume(items, patched); else - consumer->consume(items); + this->consumer->consume(items); } // vim:set ts=4 sw=4: --------------------------------------- Received: (at 263354-done) by bugs.debian.org; 9 Aug 2005 19:18:44 +0000 >From [EMAIL PROTECTED] Tue Aug 09 12:18:44 2005 Return-path: <[EMAIL PROTECTED]> Received: from sorrow.cyrius.com [65.19.161.204] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1E2Zca-0006q2-00; Tue, 09 Aug 2005 12:18:44 -0700 Received: by sorrow.cyrius.com (Postfix, from userid 10) id F070964D54; Tue, 9 Aug 2005 19:18:38 +0000 (UTC) Received: by deprecation.cyrius.com (Postfix, from userid 1000) id 81BA9838B; Tue, 9 Aug 2005 20:18:30 +0100 (BST) Date: Tue, 9 Aug 2005 20:18:30 +0100 From: Martin Michlmayr <[EMAIL PROTECTED]> To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Removed Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_00,ONEWORD autolearn=no version=2.60-bugs.debian.org_2005_01_02 These packages have been removed because they are superseded by libdebtgas1, libtagcoll1. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]