Michael Leung

Results 1 issues of Michael Leung

报错为error: could not convert ‘log’ from ‘const string_view’ {aka ‘const std::basic_string_view’} to ‘absl::string_view’ 在文件src/wal/wal_writer.cpp中的22行使用函数absl::ComputeCrc32c(log)前加入修改类型: absl::string_view new_log(log.data(), log.size()); 再将absl::ComputeCrc32c(log)中的log改为new_log之后才编译构建成功。