diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-16 10:38:25 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-16 10:38:25 +0100 |
commit | 6cec188c524f83a84e2cda88f0c121998867bc77 (patch) | |
tree | 39a437b057a6133e85c7e8df0ffd9d68b29c7a0d /kernel | |
parent | e01254d8244d16f98d6a99a2cd8c1692fe334dce (diff) | |
download | yosys-6cec188c524f83a84e2cda88f0c121998867bc77.tar.gz yosys-6cec188c524f83a84e2cda88f0c121998867bc77.tar.bz2 yosys-6cec188c524f83a84e2cda88f0c121998867bc77.zip |
Fixed build with gcc 4.6
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/rtlil.h | 2 |
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; |