Mercurial > hg > Gears > GearsAgda
diff src/parallel_execution/SingleLinkedQueue.cbc @ 272:68cf983475e7
fix
author | mir3636 |
---|---|
date | Mon, 30 Jan 2017 17:35:19 +0900 |
parents | ffcd80cc3a83 |
children | 2c2e4e597eb0 |
line wrap: on
line diff
--- a/src/parallel_execution/SingleLinkedQueue.cbc Mon Jan 30 15:02:08 2017 +0900 +++ b/src/parallel_execution/SingleLinkedQueue.cbc Mon Jan 30 17:35:19 2017 +0900 @@ -50,7 +50,7 @@ goto next(...); } -__code takeSingleLinkedQueue(struct SingleLinkedQueue* queue, _code next(union Data* data, ...)) { +__code takeSingleLinkedQueue(struct SingleLinkedQueue* queue, __code next(union Data* data, ...)) { if (queue->top) { data = queue->top->data; queue->top = queue->top->next;