You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.
报错为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之后才编译构建成功。
The text was updated successfully, but these errors were encountered:
报错为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之后才编译构建成功。
The text was updated successfully, but these errors were encountered: