Skip to content

Commit

Permalink
[c++] Fix nightly build failure (#2609)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored May 21, 2024
1 parent 12a41ab commit 27cc8a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libtiledbsoma/src/utils/arrow_adapter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,8 @@ void ArrowAdapter::_append_to_filter_list(
filter_list.add_filter(filter);
}
} catch (std::out_of_range& e) {
throw TileDBSOMAError(
fmt::format("Invalid filter {} passed to PlatformConfig", value));
throw TileDBSOMAError(fmt::format(
"Invalid filter {} passed to PlatformConfig", std::string(value)));
}
}

Expand Down

0 comments on commit 27cc8a9

Please sign in to comment.