Changes in tests/avltree/avl1.cfa [b81fd95:107b01a]
- File:
-
- 1 edited
-
tests/avltree/avl1.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/avltree/avl1.cfa
rb81fd95 r107b01a 24 24 tree(K, V) * create(K key, V value) { 25 25 // infinite loop trying to resolve ... t = malloc(); 26 tree(K, V) * t = ( tree(K, V) * )malloc(sizeof(tree(K,V)));26 tree(K, V) * t = malloc(sizeof(tree(K,V))); 27 27 (*t){ key, value }; 28 28 return t;
Note:
See TracChangeset
for help on using the changeset viewer.