diff src/parallel_execution/plautogen/impl/RedBlackTree.h @ 588:78e10562b210

tweak
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Thu, 16 Jan 2020 14:44:03 +0900
parents d9c3bccaa13c
children
line wrap: on
line diff
--- a/src/parallel_execution/plautogen/impl/RedBlackTree.h	Thu Jan 16 14:43:44 2020 +0900
+++ b/src/parallel_execution/plautogen/impl/RedBlackTree.h	Thu Jan 16 14:44:03 2020 +0900
@@ -1,8 +1,8 @@
 typedef struct RedBlackTree <Type, Isa> impl Tree {
   struct Node* root;
-  struct Node* current // reading node of original tree;
-  struct Node* previous // parent of reading node of original tree;
-  struct Node* newNode // writing node of new tree;
+  struct Node* current; // reading node of original tree;
+  struct Node* previous; // parent of reading node of original tree;
+  struct Node* newNode; // writing node of new tree;
   struct Node* parent;
   struct Node* grandparent;
   struct Stack* nodeStack;