Skip to content

Commit

Permalink
fix aof_reader c++17 build fail (#1454)
Browse files Browse the repository at this point in the history
  • Loading branch information
lqxhub authored May 7, 2023
1 parent 2f5b44e commit 2448b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pika-tools/aof_to_pika/src/aof_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static int file_read(const std::string& path) {
LOG_INFO("Begin reading.... ");
print_cur_time();

std::ios::streampos gpos = ifs.tellg();
std::streampos gpos = ifs.tellg();
std::string line;
bool dirty = false;
while (true) {
Expand Down

0 comments on commit 2448b61

Please sign in to comment.