[Debtags-commits] [svn] r1799 - in tagcoll/trunk: . debian tagcoll
Enrico Zini
enrico at costa.debian.org
Thu Jun 1 12:25:27 UTC 2006
Author: enrico
Date: Thu Jun 1 12:25:26 2006
New Revision: 1799
Modified:
tagcoll/trunk/ (props changed)
tagcoll/trunk/configure.ac
tagcoll/trunk/debian/changelog
tagcoll/trunk/tagcoll/OpSet.h
Log:
r2921 at viaza: enrico | 2006-06-01 14:15:25 +0200
Minor new release to allow packagesearch to compile with g++-4.1
Modified: tagcoll/trunk/configure.ac
==============================================================================
--- tagcoll/trunk/configure.ac (original)
+++ tagcoll/trunk/configure.ac Thu Jun 1 12:25:26 2006
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(tagcoll, 1.6.2, [enrico at debian.org])
+AC_INIT(tagcoll, 1.6.3, [enrico at debian.org])
AC_CONFIG_SRCDIR([configure.ac])
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE([foreign])
Modified: tagcoll/trunk/debian/changelog
==============================================================================
--- tagcoll/trunk/debian/changelog (original)
+++ tagcoll/trunk/debian/changelog Thu Jun 1 12:25:26 2006
@@ -1,3 +1,10 @@
+tagcoll (1.6.3-1) unstable; urgency=low
+
+ * New upstream release
+ + minor fix to OpSet.h to make g++ happy
+
+ -- Enrico Zini <enrico at debian.org> Thu, 1 Jun 2006 14:13:52 +0200
+
tagcoll (1.6.2-2) unstable; urgency=low
* Fix FTBFS on alpha by adding g++-4.1 in Build-Depends. Closes: #358493.
Modified: tagcoll/trunk/tagcoll/OpSet.h
==============================================================================
--- tagcoll/trunk/tagcoll/OpSet.h (original)
+++ tagcoll/trunk/tagcoll/OpSet.h Thu Jun 1 12:25:26 2006
@@ -67,7 +67,7 @@
OpSet(A a, B b) : std::set<T>(a, b) {}
/** Return true if the tag set contains tag, else false */
- bool contains(const T& item) const { return find(item) != end(); }
+ bool contains(const T& item) const { return this->find(item) != this->end(); }
/** Return true if the tag set contains ts, else false */
bool contains(const OpSet<T>& ts) const;
More information about the Debtags-commits
mailing list