]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/list.h
Shrunk the dependencies immensely with forward declarations in all H files instead...
[irc/gameservirc.git] / gameserv / list.h
index 77e353c4ce6020bf12016f0cd7938695e72af638..d42c4b9bb8c910a91bdfab8fefc43039f2204eac 100644 (file)
@@ -251,6 +251,7 @@ void List<T>::print() const
        cout << currentPtr->getData()->getString() << endl;
        currentPtr = currentPtr->next;
        */
+      /*
        T *dat;
        dat = currentPtr->getData();
        log("name: %s", dat->name.c_str());
@@ -262,6 +263,7 @@ void List<T>::print() const
        log("maxhp: %d", dat->maxhp);
        log("hp: %d", dat->hp);
        currentPtr = currentPtr->next;
+      */
     }
 }
 #endif