Lines Matching defs:other
108 sc_report::sc_report(const sc_report& other)
109 : std::exception(other),
110 severity(other.severity),
111 md(other.md),
112 msg(empty_dup(other.msg)),
113 file(empty_dup(other.file)),
114 line(other.line),
115 timestamp(new sc_time(*other.timestamp)),
116 process(other.process),
117 m_verbosity_level(other.m_verbosity_level),
118 m_what(empty_dup(other.m_what))
122 sc_report & sc_report::operator=(const sc_report& other)
124 sc_report copy(other);