Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/common/util/instance_logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ template <typename CATEGORY> class InstanceLogger {
void set_logger(LoggerDelegate& logger) { this->logger = &logger; }

private:
LoggerDelegate* logger;
LoggerDelegate* logger{nullptr};
};
} // namespace util

#define ILOG(LOGGER, LEVEL, MSG) \
if(LEVEL <= this->LOGGER.get_log_level()) { \
this->LOGGER.log(LEVEL, MSG, __LINE__, __FILE__); \
}
#endif // _ISS_LOGGER_H_
#endif // _ISS_LOGGER_H_
2 changes: 1 addition & 1 deletion src/sysc/tlm/scc/quantum_keeper_mt.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <sysc/kernel/sc_simcontext.h>

#if SC_VERSION_MAJOR < 3
#error "Multithreaded quantum keeper is only supported with SystemC 3.0 and newer"
#warning "Multithreaded quantum keeper is only supported with SystemC 3.0 and newer"
#else
#define DEBUG_MT_SCHEDULING

Expand Down