From 9009d358f7959b1dd60b77fea181be04ae190ef3 Mon Sep 17 00:00:00 2001 From: bd Date: Mon, 10 Mar 2025 16:44:39 -0400 Subject: Add starter overloaded << operator for cache --- src/storage/storage.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/storage/storage.cc') diff --git a/src/storage/storage.cc b/src/storage/storage.cc index 16ad63f..62f3699 100644 --- a/src/storage/storage.cc +++ b/src/storage/storage.cc @@ -3,7 +3,7 @@ #include std::vector> -Storage::view(int base, int lines) +Storage::view(int base, int lines) const { base = (base / LINE_SIZE) * LINE_SIZE; std::vector> ret(lines + 1); -- cgit v1.2.3