mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fix build warning+error in c++ example
This commit is contained in:
parent
d9fcfdab34
commit
fcbbf7ba76
|
@ -4,6 +4,7 @@ Copyright (c) 2015 Microsoft Corporation
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
#include<vector>
|
#include<vector>
|
||||||
#include"z3++.h"
|
#include"z3++.h"
|
||||||
|
|
||||||
|
@ -737,7 +738,7 @@ void tactic_example8() {
|
||||||
try {
|
try {
|
||||||
t(g);
|
t(g);
|
||||||
}
|
}
|
||||||
catch (exception) {
|
catch (exception&) {
|
||||||
std::cout << "tactic failed...\n";
|
std::cout << "tactic failed...\n";
|
||||||
}
|
}
|
||||||
std::cout << "trying again...\n";
|
std::cout << "trying again...\n";
|
||||||
|
|
Loading…
Reference in a new issue