mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 22:23:22 +00:00
Fix misprint
This commit is contained in:
parent
f00697cf95
commit
21be4e6d16
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ func_decl * array_decl_plugin::mk_store(unsigned arity, sort * const * domain) {
|
||||||
sort* srt2 = domain[i+1];
|
sort* srt2 = domain[i+1];
|
||||||
if (!m_manager->compatible_sorts(srt1, srt2)) {
|
if (!m_manager->compatible_sorts(srt1, srt2)) {
|
||||||
std::stringstream strm;
|
std::stringstream strm;
|
||||||
strm << "domain sort " << sort_ref(srt2, *m_manager) << " and parameter sort " << sort_ref(srt2, *m_manager) << " do not match";
|
strm << "domain sort " << sort_ref(srt2, *m_manager) << " and parameter sort " << sort_ref(srt1, *m_manager) << " do not match";
|
||||||
m_manager->raise_exception(strm.str());
|
m_manager->raise_exception(strm.str());
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue