CXXGraph::Node::getData() should not be const #438
Labels
core
something about core
enhancement
New feature or request
good first issue
Good for newcomers
Priority:Medium
Priority Label for medium priority issue
The current function signature of
CXXGraph::Node::getData()
is:This prevents users from modifying their stored data without
const_cast
. We should remove the qualifiers from this function. If the user wants read-only data, they should make the entire graph const.The text was updated successfully, but these errors were encountered: