summaryrefslogtreecommitdiff
path: root/src/mem/cache/base.hh
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2015-08-21 07:03:20 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2015-08-21 07:03:20 -0400
commit1bf389a2bf95980efa6d2648a05bda2634dbec64 (patch)
tree0adf900f2348eeda2bb211a3e93e275169092bc0 /src/mem/cache/base.hh
parentae06e9a5c640e376d8997409180e4ac1d57838b2 (diff)
downloadgem5-1bf389a2bf95980efa6d2648a05bda2634dbec64.tar.xz
mem: Move cache_impl.hh to cache.cc
There is no longer any need to keep the implementation in a header.
Diffstat (limited to 'src/mem/cache/base.hh')
-rw-r--r--src/mem/cache/base.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/cache/base.hh b/src/mem/cache/base.hh
index c3bf6fe87..3e6f5cab2 100644
--- a/src/mem/cache/base.hh
+++ b/src/mem/cache/base.hh
@@ -47,8 +47,8 @@
* Declares a basic cache interface BaseCache.
*/
-#ifndef __BASE_CACHE_HH__
-#define __BASE_CACHE_HH__
+#ifndef __MEM_CACHE_BASE_HH__
+#define __MEM_CACHE_BASE_HH__
#include <algorithm>
#include <list>
@@ -597,4 +597,4 @@ class BaseCache : public MemObject
};
-#endif //__BASE_CACHE_HH__
+#endif //__MEM_CACHE_BASE_HH__