Skip to content
Snippets Groups Projects
Commit 3e91b83c authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing test for IO

parent 3ba9a838
No related branches found
No related tags found
Loading
......@@ -97,6 +97,9 @@ struct vertex_prop
create_prop<typename G::V_type>(attributes_names);
};
//! destructor
~vertex_prop() {delete [] attributes_names;}
/*! It call the functor for each member
*
* \param t each member
......@@ -341,6 +344,10 @@ struct edge_prop
create_prop<typename G::E_type>(attributes_names);
};
//! destructor
~edge_prop()
{delete [] attributes_names;}
/*! \brief It call the functor for each member
*
* \param t each member
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment