Skip to content

Commit

Permalink
Update fs.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
aarikpokras authored Dec 13, 2024
1 parent 83676e6 commit ad81c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fs.cxlbund/fs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ vector<string> read_file(string file) {
return ret_vec;
}
string ln;
while(getline(f_end, ln)) {
while (getline(f_end, ln)) {
ret_vec.push_back(ln);
}
f_end.close();
Expand Down

0 comments on commit ad81c8e

Please sign in to comment.