mirror of
https://github.com/Z3Prover/z3
synced 2025-06-15 02:16:16 +00:00
Remove unreferenced formal parameter name
MSVC reports warning C4100 when compiling z3++.h, because of unreferenced formal parameter.
This commit is contained in:
parent
6d244ed2aa
commit
f8a9f6cce0
1 changed files with 1 additions and 1 deletions
|
@ -634,7 +634,7 @@ namespace z3 {
|
||||||
symbol name() const { Z3_symbol s = Z3_get_decl_name(ctx(), *this); check_error(); return symbol(ctx(), s); }
|
symbol name() const { Z3_symbol s = Z3_get_decl_name(ctx(), *this); check_error(); return symbol(ctx(), s); }
|
||||||
Z3_decl_kind decl_kind() const { return Z3_get_decl_kind(ctx(), *this); }
|
Z3_decl_kind decl_kind() const { return Z3_get_decl_kind(ctx(), *this); }
|
||||||
|
|
||||||
func_decl transitive_closure(func_decl const& f) {
|
func_decl transitive_closure(func_decl const&) {
|
||||||
Z3_func_decl tc = Z3_mk_transitive_closure(ctx(), *this); check_error(); return func_decl(ctx(), tc);
|
Z3_func_decl tc = Z3_mk_transitive_closure(ctx(), *this); check_error(); return func_decl(ctx(), tc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue