Skip to content

Commit

Permalink
fixup! remove unused methods of LargeVector
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerzinn committed Apr 21, 2024
1 parent 693d176 commit 79ab8b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libgalois/test/large-vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ int main() {
// should use 4 hugepages
std::vector<uint64_t*> refs(the_vector.size());
for (size_t i = 0; i < the_vector.size(); ++i) {
refs[i] = &the_vector[i];
the_vector[i] = i;
refs[i] = &the_vector[i];
}

for (size_t i = 0; i < the_vector.size(); ++i) {
Expand Down

0 comments on commit 79ab8b4

Please sign in to comment.