3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
This commit is contained in:
Nikolaj Bjorner 2018-06-15 14:58:10 -07:00
commit 6fc08e9c9f
236 changed files with 14093 additions and 16593 deletions

View file

@ -27,7 +27,12 @@ class plugin_manager {
ptr_vector<Plugin> m_plugins;
public:
~plugin_manager() {
reset();
}
void reset() {
std::for_each(m_plugins.begin(), m_plugins.end(), delete_proc<Plugin>());
release();
}
/**