summaryrefslogtreecommitdiff
path: root/src/expr
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-02-05 16:30:17 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-02-05 16:37:54 -0500
commit1ea7caf0ef8e4ef3db22b6392c9624345eb974e3 (patch)
treeba71e6c230835bc134a16a72ee2a24bbd01d7e6c /src/expr
parentb96d64bf23a53bd630bd822ff534517157ee08fd (diff)
Fix a compiler warning in NodeBuilder
Diffstat (limited to 'src/expr')
-rw-r--r--src/expr/node_builder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr/node_builder.h b/src/expr/node_builder.h
index 458bd25fa..5f813dbe8 100644
--- a/src/expr/node_builder.h
+++ b/src/expr/node_builder.h
@@ -1285,7 +1285,7 @@ void NodeBuilder<nchild_thresh>::internalCopy(const NodeBuilder<N>& nb) {
return;
}
- bool realloced = false;
+ bool realloced CVC4_UNUSED = false;
if(nb.d_nvMaxChildren > d_nvMaxChildren) {
realloced = true;
realloc(nb.d_nvMaxChildren);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback