Deleted Added
sdiff udiff text old ( 12852:300397457d0b ) new ( 12877:27fdc86138ef )
full compact
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 93 unchanged lines hidden (view full) ---

102 const std::string &);
103void sc_trace(sc_trace_file *, const sc_dt::sc_fxnum &, const std::string &);
104void sc_trace(sc_trace_file *, const sc_dt::sc_fxnum *, const std::string &);
105void sc_trace(sc_trace_file *, const sc_dt::sc_fxnum_fast &,
106 const std::string &);
107void sc_trace(sc_trace_file *, const sc_dt::sc_fxnum_fast *,
108 const std::string &);
109
110void sc_trace(sc_trace_file *, const char &,
111 const std::string &, int width=(8 * sizeof(char)));
112void sc_trace(sc_trace_file *, const char *,
113 const std::string &, int width=(8 * sizeof(char)));
114void sc_trace(sc_trace_file *, const short &,
115 const std::string &, int width=(8 * sizeof(char)));
116void sc_trace(sc_trace_file *, const short *,
117 const std::string &, int width=(8 * sizeof(char)));

--- 9 unchanged lines hidden (view full) ---

127 const std::string &, int width=(8 * sizeof(char)));
128void sc_trace(sc_trace_file *, const sc_dt::int64 *,
129 const std::string &, int width=(8 * sizeof(char)));
130void sc_trace(sc_trace_file *, const sc_dt::uint64 &,
131 const std::string &, int width=(8 * sizeof(char)));
132void sc_trace(sc_trace_file *, const sc_dt::uint64 *,
133 const std::string &, int width=(8 * sizeof(char)));
134
135template <class T>
136void
137sc_trace(sc_trace_file *, const sc_signal_in_if<T> &, const std::string &)
138{
139 sc_utils_warn_unimpl(__PRETTY_FUNCTION__);
140}
141
142void sc_trace(sc_trace_file *, const sc_signal_in_if<char> &,

--- 14 unchanged lines hidden ---