summaryrefslogtreecommitdiff
path: root/inc/cache.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-10 22:07:36 -0400
committerbd <bdunahu@operationnull.com>2025-03-10 22:07:36 -0400
commit85078b99e4cf652fcbd5f4d36b061674a2fe8aa6 (patch)
tree1e3097ec91c7fcd7fc9d00f912b46814900201f0 /inc/cache.h
parent25d6d41af95cc2a2db3ba2651e5d784413c7058f (diff)
overload << operator for dram
Diffstat (limited to 'inc/cache.h')
-rw-r--r--inc/cache.h2
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 */