mirror of
https://github.com/Z3Prover/z3
synced 2025-06-03 04:41:21 +00:00
Merge pull request #728 from AlexVonB/patch-1
Fix VisualStudio 2010 compiler warning C4100
This commit is contained in:
commit
e7ae60893c
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ namespace z3 {
|
||||||
*/
|
*/
|
||||||
class context {
|
class context {
|
||||||
Z3_context m_ctx;
|
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) {
|
void init(config & c) {
|
||||||
m_ctx = Z3_mk_context_rc(c);
|
m_ctx = Z3_mk_context_rc(c);
|
||||||
Z3_set_error_handler(m_ctx, error_handler);
|
Z3_set_error_handler(m_ctx, error_handler);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue