diff paper/src/SingleLinkedStack.cbc @ 87:21cc0181b4cc

Update fig
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Thu, 09 Feb 2017 16:34:07 +0900
parents fd984cfd5425
children
line wrap: on
line diff
--- a/paper/src/SingleLinkedStack.cbc	Thu Feb 09 15:40:11 2017 +0900
+++ b/paper/src/SingleLinkedStack.cbc	Thu Feb 09 16:34:07 2017 +0900
@@ -41,7 +41,6 @@
     goto next(...);
 }
 
-// TODO
 __code pushSingleLinkedStack(struct SingleLinkedStack* stack,union Data* data, __code next(...)) {
     Element* element = new Element();
     element->next = stack->top;