3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

remove noexcept since MSVC 2012 doest support it

This commit is contained in:
Nuno Lopes 2017-10-13 01:07:04 +01:00
parent b53d69be18
commit d1c13f17b0
5 changed files with 7 additions and 7 deletions

View file

@ -35,7 +35,7 @@ namespace simplex {
struct row_entry {
numeral m_coeff;
var_t m_var;
row_entry(numeral && c, var_t v) noexcept : m_coeff(std::move(c)), m_var(v) {}
row_entry(numeral && c, var_t v) : m_coeff(std::move(c)), m_var(v) {}
};
private: