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:
parent
ec565ae7a0
commit
96e157e201
38 changed files with 180 additions and 184 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue