diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-31 04:24:04 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-31 04:24:04 +0100 |
commit | 12b05dfc040ccdcde193cd1ff81e97b3c5e2c974 (patch) | |
tree | 4ca1807a33f56be2b7b5298dba8c96cf280339bc /kernel/hashlib.h | |
parent | 429ccb62a1c3ea06345b9c8f1ebd3dcbddc42f4c (diff) | |
download | yosys-12b05dfc040ccdcde193cd1ff81e97b3c5e2c974.tar.gz yosys-12b05dfc040ccdcde193cd1ff81e97b3c5e2c974.tar.bz2 yosys-12b05dfc040ccdcde193cd1ff81e97b3c5e2c974.zip |
gcc-4.6 compile fixes
Diffstat (limited to 'kernel/hashlib.h')
-rw-r--r-- | kernel/hashlib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/hashlib.h b/kernel/hashlib.h index 6330841f3..7f2575d72 100644 --- a/kernel/hashlib.h +++ b/kernel/hashlib.h @@ -289,7 +289,7 @@ class dict public: class iterator { - friend dict; + friend class dict; protected: dict *ptr; int index; @@ -307,7 +307,7 @@ public: class const_iterator { - friend dict; + friend class dict; protected: const dict *ptr; int index; @@ -608,7 +608,7 @@ class pool public: class iterator { - friend pool; + friend class pool; protected: pool *ptr; int index; @@ -624,7 +624,7 @@ public: class const_iterator { - friend pool; + friend class pool; protected: const pool *ptr; int index; |