[Aptitude-svn-commit] r4026 - in branches/aptitude-0.3/aptitude: . src/generic

Daniel Burrows dburrows at costa.debian.org
Wed Aug 31 22:44:34 UTC 2005


Author: dburrows
Date: Wed Aug 31 22:44:31 2005
New Revision: 4026

Modified:
   branches/aptitude-0.3/aptitude/ChangeLog
   branches/aptitude-0.3/aptitude/src/generic/immset.h
Log:
Fix another silly error that was introduced when moving the code.

Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog	(original)
+++ branches/aptitude-0.3/aptitude/ChangeLog	Wed Aug 31 22:44:31 2005
@@ -2,6 +2,11 @@
 
 	* src/generic/immset.h:
 
+	  Yet another silly error from moving the code: use getRight, not
+	  getLeft.
+
+	* src/generic/immset.h:
+
 	  Add missing #include of iostream.
 
 	* src/generic/immset.h:

Modified: branches/aptitude-0.3/aptitude/src/generic/immset.h
==============================================================================
--- branches/aptitude-0.3/aptitude/src/generic/immset.h	(original)
+++ branches/aptitude-0.3/aptitude/src/generic/immset.h	Wed Aug 31 22:44:31 2005
@@ -355,7 +355,7 @@
       out << getVal() << std::endl;
 
       getLeft().dump(out, indent, level+1, 0);
-      getLeft().dump(out, indent, level+1, 1);
+      getRight().dump(out, indent, level+1, 1);
     }
   };
 



More information about the Aptitude-svn-commit mailing list