mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
remove noexcept since MSVC 2012 doest support it
This commit is contained in:
parent
b53d69be18
commit
d1c13f17b0
5 changed files with 7 additions and 7 deletions
|
@ -121,7 +121,7 @@ public:
|
|||
explicit parameter(unsigned ext_id, bool):m_kind(PARAM_EXTERNAL), m_ext_id(ext_id) {}
|
||||
parameter(parameter const&);
|
||||
|
||||
parameter(parameter && other) noexcept : m_kind(other.m_kind) {
|
||||
parameter(parameter && other) : m_kind(other.m_kind) {
|
||||
switch (other.m_kind) {
|
||||
case PARAM_INT: m_int = other.get_int(); break;
|
||||
case PARAM_AST: m_ast = other.get_ast(); break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue