Skip to content

Commit

Permalink
Fix build for macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Sep 1, 2020
1 parent 52b8d04 commit cbd2954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/cache/storage_cache_compactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ bool CompactorObject::writeList() {
template <typename MultiRecord>
bool CompactorObject::writeMultiStore() {
using Part = typename MultiRecord::Part;
auto &list = std::get<std::vector<Part>>(_list);
auto &list = v::get<std::vector<Part>>(_list);
if (list.empty()) {
return true;
}
Expand Down

0 comments on commit cbd2954

Please sign in to comment.