diff options
author | bd <bdunahu@operationnull.com> | 2025-03-10 16:44:39 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-10 16:44:39 -0400 |
commit | 9009d358f7959b1dd60b77fea181be04ae190ef3 (patch) | |
tree | bfd4d2a5303d15f625b4d945800c0c7c55a2bac7 /inc/storage.h | |
parent | cdcaec3c1e62b47fcd270df651cd0e343e46f0e7 (diff) |
Add starter overloaded << operator for cache
Diffstat (limited to 'inc/storage.h')
-rw-r--r-- | inc/storage.h | 2 |
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. */ |