From: root Date: Wed, 8 Apr 2020 23:11:05 +0000 (-0700) Subject: revert check X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=commitdiff_plain;h=f8dc5cedc1af12064f7512d0f843d2abcd004ed3;ds=inline revert check --- diff --git a/actionlist.cc b/actionlist.cc index 68345986..52569447 100644 --- a/actionlist.cc +++ b/actionlist.cc @@ -226,8 +226,7 @@ void actionlist::removeAction(ModelAction * act) { void actionlist::clear() { for(uint i = 0;i < ALLNODESIZE;i++) { if (root.children[i] != NULL) { - if (!(((uintptr_t) root.children[i]) & ISACT)) - delete root.children[i]; + delete root.children[i]; root.children[i] = NULL; } }