summaryrefslogtreecommitdiff
path: root/src/systemc/ext
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2019-12-03 06:05:08 -0800
committerGabe Black <gabeblack@google.com>2019-12-03 20:33:36 +0000
commitef481775ae58afad37abe0c3c9b9bdf119d7bf33 (patch)
treed845988dcf3f1d341df832155bdc5f56c076ab4f /src/systemc/ext
parentce83321dfc8cbaad4ce7d62410f5e3c3551e5966 (diff)
downloadgem5-ef481775ae58afad37abe0c3c9b9bdf119d7bf33.tar.xz
systemc: Purposefully *expose* bind in the initiator socket.
Apparently the base version of bind actually *is* supposed to be accessible, so expose it with using instead of hiding it. Change-Id: Ie762c35d6322e744696ed597189b7773ea68c3b7 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/23322 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/systemc/ext')
-rw-r--r--src/systemc/ext/tlm_core/2/sockets/initiator_socket.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/systemc/ext/tlm_core/2/sockets/initiator_socket.hh b/src/systemc/ext/tlm_core/2/sockets/initiator_socket.hh
index 75f8f0ab3..35c650bce 100644
--- a/src/systemc/ext/tlm_core/2/sockets/initiator_socket.hh
+++ b/src/systemc/ext/tlm_core/2/sockets/initiator_socket.hh
@@ -120,6 +120,8 @@ class tlm_base_initiator_socket :
(s.get_base_export())(get_base_export());
}
+ using port_type::bind;
+
void operator() (base_type &s) { bind(s); }
//
@@ -169,9 +171,6 @@ class tlm_base_initiator_socket :
protected:
export_type m_export;
-
- private:
- using port_type::bind;
};
//