diff options
author | Gabe Black <gabeblack@google.com> | 2018-11-08 17:18:20 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-11-09 01:28:00 +0000 |
commit | dabc2b138deb02e73577bfc76d22445299abef16 (patch) | |
tree | 1fd0bdc947f1e29d627e106a48f77c57c0cdbd55 /src/systemc/core | |
parent | a993544a6bef7ee23c855045ea22a13b7fceebd0 (diff) | |
download | gem5-dabc2b138deb02e73577bfc76d22445299abef16.tar.xz |
systemc: Add a missing "const" on one of the sc_event operators.
Change-Id: I073ccb0f2c6d1bfebadb95869d6acf7f4ce565af
Reviewed-on: https://gem5-review.googlesource.com/c/14135
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/core')
-rw-r--r-- | src/systemc/core/sc_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemc/core/sc_event.cc b/src/systemc/core/sc_event.cc index 75d5c8978..677425418 100644 --- a/src/systemc/core/sc_event.cc +++ b/src/systemc/core/sc_event.cc @@ -99,7 +99,7 @@ sc_event_and_list::operator & (const sc_event &e) const } sc_event_and_expr -sc_event_and_list::operator & (const sc_event_and_list &eal) +sc_event_and_list::operator & (const sc_event_and_list &eal) const { sc_event_and_expr expr; expr.insert(*this); |