diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2015-08-21 07:03:20 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2015-08-21 07:03:20 -0400 |
commit | 1bf389a2bf95980efa6d2648a05bda2634dbec64 (patch) | |
tree | 0adf900f2348eeda2bb211a3e93e275169092bc0 /src/mem/cache/cache.hh | |
parent | ae06e9a5c640e376d8997409180e4ac1d57838b2 (diff) | |
download | gem5-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/cache.hh')
-rw-r--r-- | src/mem/cache/cache.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/cache/cache.hh b/src/mem/cache/cache.hh index 27d4b9ee1..06d78a272 100644 --- a/src/mem/cache/cache.hh +++ b/src/mem/cache/cache.hh @@ -49,8 +49,8 @@ * Describes a cache based on template policies. */ -#ifndef __CACHE_HH__ -#define __CACHE_HH__ +#ifndef __MEM_CACHE_CACHE_HH__ +#define __MEM_CACHE_CACHE_HH__ #include "base/misc.hh" // fatal, panic, and warn #include "mem/cache/base.hh" @@ -491,4 +491,4 @@ class CacheBlkIsDirtyVisitor : public CacheBlkVisitor bool _isDirty; }; -#endif // __CACHE_HH__ +#endif // __MEM_CACHE_CACHE_HH__ |