3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00
This commit is contained in:
Nikolaj Bjorner 2016-09-06 14:39:19 -07:00
commit 0e9758a211
4 changed files with 149 additions and 26 deletions

View file

@ -127,7 +127,7 @@ namespace z3 {
*/
class context {
Z3_context m_ctx;
static void error_handler(Z3_context c, Z3_error_code e) { /* do nothing */ }
static void error_handler(Z3_context /*c*/, Z3_error_code /*e*/) { /* do nothing */ }
void init(config & c) {
m_ctx = Z3_mk_context_rc(c);
Z3_set_error_handler(m_ctx, error_handler);