diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-08-02 00:45:25 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-08-02 00:45:25 +0200 |
commit | 14412e6c957a34381c33740426b35f7b90a446be (patch) | |
tree | d45765adc9aa28301ab0c9d100728a5d720503fd /kernel/log.h | |
parent | 75ffd1643c97321255bc591edf0c1a7097b8dce9 (diff) | |
download | yosys-14412e6c957a34381c33740426b35f7b90a446be.tar.gz yosys-14412e6c957a34381c33740426b35f7b90a446be.tar.bz2 yosys-14412e6c957a34381c33740426b35f7b90a446be.zip |
Preparations for RTLIL::IdString redesign: cleanup of existing code
Diffstat (limited to 'kernel/log.h')
-rw-r--r-- | kernel/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/log.h b/kernel/log.h index 2e968039f..118ff69ba 100644 --- a/kernel/log.h +++ b/kernel/log.h @@ -60,7 +60,7 @@ void log_reset_stack(); void log_flush(); const char *log_signal(const RTLIL::SigSpec &sig, bool autoint = true); -const char *log_id(std::string id); +const char *log_id(RTLIL::IdString id); template<typename T> static inline const char *log_id(T *obj) { return log_id(obj->name); |