diff --git a/graphviz/test.cpp b/graphviz/test.cpp index bf889ad3..415ed3d7 100644 --- a/graphviz/test.cpp +++ b/graphviz/test.cpp @@ -26,7 +26,6 @@ int main(){ map comps; - vector links; ifstream halfile("test.hal", fstream::in); ofstream dotfile("test.dot", fstream::out); string s((std::istreambuf_iterator(halfile)), std::istreambuf_iterator()); @@ -50,7 +49,6 @@ int main(){ dotfile << "start = regular;" << endl; dotfile << "forcelabels = true;" << endl; - for(auto &comp:comps){ dotfile << "subgraph cluster_" << comp.second.name << "{" << endl; dotfile << " style = rounded;" << endl;