diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-18 15:20:38 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-18 15:20:38 +0200 |
commit | 84ffe04075bbddfd1b288295c07d036416923c3a (patch) | |
tree | 1d3b80144cad20aeab554084d42e7ba592fc686e /frontends/ast/simplify.cc | |
parent | 85572b05e5359f28c1625b873dc14428f796a454 (diff) | |
download | yosys-84ffe04075bbddfd1b288295c07d036416923c3a.tar.gz yosys-84ffe04075bbddfd1b288295c07d036416923c3a.tar.bz2 yosys-84ffe04075bbddfd1b288295c07d036416923c3a.zip |
Fixed various VS warnings
Diffstat (limited to 'frontends/ast/simplify.cc')
-rw-r--r-- | frontends/ast/simplify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc index 70976b68b..e2d63de60 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -2457,7 +2457,7 @@ AstNode *AstNode::eval_const_function(AstNode *fcall) } log_assert(block != NULL); - log_assert(variables.count(str)); + log_assert(variables.count(str) != 0); while (!block->children.empty()) { |