X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=cyclegraph.cc;h=7f430cca6e5db962d22e2d8dd31c7873e122a9b8;hp=0a58e5823199a3168440e2b90b4b8b6d24cb6c9c;hb=fbcb205af54b85aed7d2d9a6ed1eaa91e7d70a23;hpb=7f9bbee401eb5c04bd0a050c0daf19813e81a783 diff --git a/cyclegraph.cc b/cyclegraph.cc index 0a58e582..7f430cca 100644 --- a/cyclegraph.cc +++ b/cyclegraph.cc @@ -170,7 +170,7 @@ bool CycleGraph::checkReachable(const ModelAction *from, const ModelAction *to) */ bool CycleGraph::checkReachable(CycleNode *from, CycleNode *to) { std::vector > queue; - HashTable discovered; + HashTable discovered; queue.push_back(from); discovered.put(from, from);