systemc: Get rid of the unused warning function in sc_event_finder_t.
authorGabe Black <gabeblack@google.com>
Thu, 23 Aug 2018 07:40:11 +0000 (00:40 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 26 Sep 2018 00:00:49 +0000 (00:00 +0000)
Change-Id: Id615856af7ea366e499747e00f66924a25623663
Reviewed-on: https://gem5-review.googlesource.com/12261
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/core/sc_event.cc
src/systemc/ext/core/sc_event.hh

index 09c820329d05d58040abfa998491b1c22f2a29a2..59581ee90f1f630c90fc3f8d014ef76b2b638f72 100644 (file)
@@ -35,17 +35,6 @@ namespace sc_core
 {
 
 
-/*
- * sc_event_finder
- */
-
-void
-sc_event_finder::warn_unimpl(const char *func) const
-{
-    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
-}
-
-
 /*
  * sc_event_and_list
  */
index f8a32f343ef7d03a902e40e2dc9fc4820ce83950..a5ac2d4f0316afdd894e66f39e1f9030f6d4331c 100644 (file)
@@ -59,7 +59,6 @@ class sc_port_base;
 class sc_event_finder
 {
   protected:
-    void warn_unimpl(const char *func) const;
     virtual ~sc_event_finder() {}
 
   public: