Add undocumented method to free memory (for testing purposes)

This commit is contained in:
Simon Giraudot 2017-03-27 09:27:04 +02:00
parent 17343421f5
commit d0ff9fdc64
1 changed files with 7 additions and 0 deletions

View File

@ -171,6 +171,13 @@ public:
m_features.clear();
}
/// \cond SKIP_IN_MANUAL
void free_memory(std::size_t i)
{
m_features[i] = Feature_handle();
}
/// \endcond
};