X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=cyclegraph.cc;h=20623347213d0958bfdff79d142595420461b015;hp=e96549ff1fddcace369f57102572edf2c6bf9c32;hb=7524803854c2de38c0311fe5037e3c17105ccfaa;hpb=ea4611c1fc3b580020afbc04d531e4bc10fcca9c diff --git a/cyclegraph.cc b/cyclegraph.cc index e96549ff..20623347 100644 --- a/cyclegraph.cc +++ b/cyclegraph.cc @@ -8,7 +8,7 @@ /** Initializes a CycleGraph object. */ CycleGraph::CycleGraph() : discovered(new HashTable(16)), - queue(new std::vector< const CycleNode *, ModelAlloc >()), + queue(new model_vector< const CycleNode * >()), hasCycles(false), oldCycles(false) {