summaryrefslogtreecommitdiff
path: root/inc/storage.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-10 16:44:39 -0400
committerbd <bdunahu@operationnull.com>2025-03-10 16:44:39 -0400
commit9009d358f7959b1dd60b77fea181be04ae190ef3 (patch)
treebfd4d2a5303d15f625b4d945800c0c7c55a2bac7 /inc/storage.h
parentcdcaec3c1e62b47fcd270df651cd0e343e46f0e7 (diff)
Add starter overloaded << operator for cache
Diffstat (limited to 'inc/storage.h')
-rw-r--r--inc/storage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/storage.h b/inc/storage.h
index 0ab16e4..3f113d3 100644
--- a/inc/storage.h
+++ b/inc/storage.h
@@ -45,7 +45,7 @@ class Storage
* @return A matrix of data values, where each row is a line and each column
* is a word.
*/
- std::vector<std::array<signed int, LINE_SIZE>> view(int base, int lines);
+ std::vector<std::array<signed int, LINE_SIZE>> view(int base, int lines) const;
/**
* Advances to the next job if the current job is completed.
*/