remove un-implemented code
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed, 04 Jun 2008 11:58:51 -0700
changeset 3223 87b3ea3ae0f8
parent 3222 f61c17b62fd1
child 3224 141aece56ae6
remove un-implemented code
src/common/tag-list.cc
src/common/tag-list.h
--- a/src/common/tag-list.cc	Wed Jun 04 11:48:52 2008 -0700
+++ b/src/common/tag-list.cc	Wed Jun 04 11:58:51 2008 -0700
@@ -191,16 +191,6 @@
 }
 
 void 
-TagList::Remove (const Iterator &i)
-{
-  if (m_data == 0)
-    {
-      return;
-    } 
-  // XXX
-}
-
-void 
 TagList::RemoveAll (void)
 {
   Deallocate (m_data);
--- a/src/common/tag-list.h	Wed Jun 04 11:48:52 2008 -0700
+++ b/src/common/tag-list.h	Wed Jun 04 11:58:51 2008 -0700
@@ -125,12 +125,6 @@
    */
   void Add (const TagList &o);
 
-  /**
-   * \param i points to the item to remove from this list.
-   *
-   * Not implemented.
-   */
-  void Remove (const Iterator &i);
   void RemoveAll (void);
 
   /**