3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 16:25:48 +00:00

fix warnings for unused variables

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-05-17 13:54:22 -07:00
parent ec565ae7a0
commit 96e157e201
38 changed files with 180 additions and 184 deletions

View file

@ -473,6 +473,7 @@ namespace smt2 {
void parse_sexpr() {
unsigned stack_pos = sexpr_stack().size();
(void)stack_pos;
unsigned num_frames = 0;
do {
unsigned line = m_scanner.get_line();
@ -631,6 +632,7 @@ namespace smt2 {
void parse_psort() {
unsigned stack_pos = psort_stack().size();
(void)stack_pos;
unsigned num_frames = 0;
do {
if (curr_is_identifier()) {
@ -693,6 +695,7 @@ namespace smt2 {
void parse_sort(char const* context) {
unsigned stack_pos = sort_stack().size();
(void)stack_pos;
unsigned num_frames = 0;
do {
if (curr_is_identifier()) {