summaryrefslogtreecommitdiff
path: root/src/systemc/core/sc_time.cc
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-06-15 20:48:08 -0700
committerGabe Black <gabeblack@google.com>2018-08-28 21:17:57 +0000
commit53779eb12e787e859c749a710a9e8f613e49a905 (patch)
tree223a7cb3202b611687ed22f9974054197be8c78f /src/systemc/core/sc_time.cc
parent8622fbf982ab6f54b171efbcccebfcfb4c2cadbe (diff)
downloadgem5-53779eb12e787e859c749a710a9e8f613e49a905.tar.xz
systemc: Add deprecated sc_time constructors.
Change-Id: Iffae751272302ff2996258a1ab31b086e12bbb8d Reviewed-on: https://gem5-review.googlesource.com/11275 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/core/sc_time.cc')
-rw-r--r--src/systemc/core/sc_time.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/systemc/core/sc_time.cc b/src/systemc/core/sc_time.cc
index 5d6b6348f..ebc637baf 100644
--- a/src/systemc/core/sc_time.cc
+++ b/src/systemc/core/sc_time.cc
@@ -48,6 +48,16 @@ sc_time::sc_time(const sc_time &)
warn("%s not implemented.\n", __PRETTY_FUNCTION__);
}
+sc_time::sc_time(double, bool)
+{
+ warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+sc_time::sc_time(sc_dt::uint64, bool)
+{
+ warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
sc_time &
sc_time::operator = (const sc_time &)
{