aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-12-17 11:16:39 +0100
committerClifford Wolf <clifford@clifford.at>2014-12-17 11:16:39 +0100
commit36f0451ab405d1f7809e593926952ac2cf4a6510 (patch)
tree1c7731cedd101f9b444d63289f6ab1854471016e
parentb95051fb709d1212abf4b3dad71204b15d6ff1db (diff)
parent6cec188c524f83a84e2cda88f0c121998867bc77 (diff)
downloadyosys-36f0451ab405d1f7809e593926952ac2cf4a6510.tar.gz
yosys-36f0451ab405d1f7809e593926952ac2cf4a6510.tar.bz2
yosys-36f0451ab405d1f7809e593926952ac2cf4a6510.zip
Merge branch 'master' of github.com:cliffordwolf/yosys
-rw-r--r--kernel/rtlil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 29fa90692..19996c8fc 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -86,7 +86,7 @@ namespace RTLIL
};
static struct destruct_guard_t {
- bool ok = false;
+ bool ok; // POD, will be initialized to zero
destruct_guard_t() { ok = true; }
~destruct_guard_t() { ok = false; }
} destruct_guard;