diff options
Diffstat (limited to 'src/mem/coherent_xbar.hh')
-rw-r--r-- | src/mem/coherent_xbar.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/coherent_xbar.hh b/src/mem/coherent_xbar.hh index d431a1d24..e99e9374f 100644 --- a/src/mem/coherent_xbar.hh +++ b/src/mem/coherent_xbar.hh @@ -258,7 +258,7 @@ class CoherentXBar : public BaseXBar * responses from so we can determine which snoop responses we * generated and which ones were merely forwarded. */ - m5::hash_set<RequestPtr> outstandingSnoop; + std::unordered_set<RequestPtr> outstandingSnoop; /** * Keep a pointer to the system to be allow to querying memory system |