diff --git a/graphviz/test.cpp b/graphviz/test.cpp index 06705c5a..e044e9c7 100644 --- a/graphviz/test.cpp +++ b/graphviz/test.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include #include @@ -27,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()); @@ -53,7 +51,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;