3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 10:25:19 +00:00

Merge branch 'master' of github.com:cliffordwolf/yosys

This commit is contained in:
Clifford Wolf 2014-12-17 11:16:39 +01:00
commit 36f0451ab4

View file

@ -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;