mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-03 11:25:41 +00:00
Merge branch 'master' of github.com:cliffordwolf/yosys
This commit is contained in:
commit
36f0451ab4
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ namespace RTLIL
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct destruct_guard_t {
|
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 = true; }
|
||||||
~destruct_guard_t() { ok = false; }
|
~destruct_guard_t() { ok = false; }
|
||||||
} destruct_guard;
|
} destruct_guard;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue