mirror of https://github.com/YosysHQ/yosys.git
Add missing log_dump_val_worker forward declarations
Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
This commit is contained in:
parent
c0ad6b3bc6
commit
fe438ca1ab
|
@ -393,6 +393,11 @@ void log_dump_val_worker(RTLIL::IdString v);
|
|||
void log_dump_val_worker(RTLIL::SigSpec v);
|
||||
void log_dump_val_worker(RTLIL::State v);
|
||||
|
||||
template<typename K, typename T, typename OPS> static inline void log_dump_val_worker(dict<K, T, OPS> &v);
|
||||
template<typename K, typename OPS> static inline void log_dump_val_worker(pool<K, OPS> &v);
|
||||
template<typename K> static inline void log_dump_val_worker(std::vector<K> &v);
|
||||
template<typename T> static inline void log_dump_val_worker(T *ptr);
|
||||
|
||||
template<typename K, typename T, typename OPS>
|
||||
static inline void log_dump_val_worker(dict<K, T, OPS> &v) {
|
||||
log("{");
|
||||
|
|
Loading…
Reference in New Issue