summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-11-08 17:18:20 -0800
committerGabe Black <gabeblack@google.com>2018-11-09 01:28:00 +0000
commitdabc2b138deb02e73577bfc76d22445299abef16 (patch)
tree1fd0bdc947f1e29d627e106a48f77c57c0cdbd55
parenta993544a6bef7ee23c855045ea22a13b7fceebd0 (diff)
downloadgem5-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>
-rw-r--r--src/systemc/core/sc_event.cc2
-rw-r--r--src/systemc/ext/core/sc_event.hh2
2 files changed, 2 insertions, 2 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);
diff --git a/src/systemc/ext/core/sc_event.hh b/src/systemc/ext/core/sc_event.hh
index e2164f4b8..7925e08b6 100644
--- a/src/systemc/ext/core/sc_event.hh
+++ b/src/systemc/ext/core/sc_event.hh
@@ -76,7 +76,7 @@ class sc_event_and_list
sc_event_and_list &operator &= (const sc_event_and_list &);
sc_event_and_expr operator & (const sc_event &) const;
- sc_event_and_expr operator & (const sc_event_and_list &);
+ sc_event_and_expr operator & (const sc_event_and_list &) const;
private:
friend class sc_event_and_expr;