Skip to content

Commit 1fa6dc2

Browse files
committed
[vpr][base] fix size_t to int cast
1 parent ac5e489 commit 1fa6dc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/base/stats.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ namespace fs = std::filesystem;
3535
// Helper struct to parse the sb_id keys
3636
struct SBKeyParts {
3737
std::string filename;
38-
size_t row;
39-
size_t col;
38+
int row;
39+
int col;
4040
};
4141

4242
// Parse the key to extract filename, row, and column

0 commit comments

Comments
 (0)