Skip to content

Commit

Permalink
CI Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Jan 31, 2024
1 parent f00baa7 commit 799d465
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/IO/HDF5/HDF5IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -566,15 +566,14 @@ void HDF5IOHandlerImpl::createDataset(
else
{
throw_chunking_error();
// throw std::runtime_error("unreachable");
}
}
}
std::optional<chunking_t> chunking = std::visit(
auxiliary::overloaded{
[&](chunking_t &&explicitly_specified)
-> std::optional<chunking_t> {
return explicitly_specified;
return std::move(explicitly_specified);
},
[&](std::string const &method_name)
-> std::optional<chunking_t> {
Expand Down

0 comments on commit 799d465

Please sign in to comment.