diff options
author | bd <bdunahu@operationnull.com> | 2025-03-10 22:07:36 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-10 22:07:36 -0400 |
commit | e8fbf581f70a899a26f71e4b2220dccd1b986ed8 (patch) | |
tree | 1e3097ec91c7fcd7fc9d00f912b46814900201f0 /inc/cache.h | |
parent | af103123a90eaf34437b7979eee2579bab8b4b36 (diff) |
overload << operator for dram
Diffstat (limited to 'inc/cache.h')
-rw-r--r-- | inc/cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/cache.h b/inc/cache.h index 0c9b3d7..04f6181 100644 --- a/inc/cache.h +++ b/inc/cache.h @@ -50,6 +50,6 @@ class Cache : public Storage std::array<std::array<int, 2>, L1_CACHE_SIZE> meta; }; -std::ostream &operator<<(std::ostream &os, const Cache &a); +std::ostream &operator<<(std::ostream &os, const Cache &c); #endif /* CACHE_H_INCLUDED */ |