mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fix tpl instantiation issue for mingw (#6597)
This commit is contained in:
parent
bd10ddf6ae
commit
828ff98c77
|
@ -347,7 +347,7 @@ public:
|
||||||
Config & cfg() { return m_cfg; }
|
Config & cfg() { return m_cfg; }
|
||||||
Config const & cfg() const { return m_cfg; }
|
Config const & cfg() const { return m_cfg; }
|
||||||
|
|
||||||
~rewriter_tpl() override;
|
~rewriter_tpl() override {};
|
||||||
|
|
||||||
void reset();
|
void reset();
|
||||||
void cleanup();
|
void cleanup();
|
||||||
|
|
|
@ -640,10 +640,6 @@ rewriter_tpl<Config>::rewriter_tpl(ast_manager & m, bool proof_gen, Config & cfg
|
||||||
m_pr2(m) {
|
m_pr2(m) {
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename Config>
|
|
||||||
rewriter_tpl<Config>::~rewriter_tpl() {
|
|
||||||
}
|
|
||||||
|
|
||||||
template<typename Config>
|
template<typename Config>
|
||||||
void rewriter_tpl<Config>::reset() {
|
void rewriter_tpl<Config>::reset() {
|
||||||
m_cfg.reset();
|
m_cfg.reset();
|
||||||
|
|
Loading…
Reference in a new issue