Skip to content

Commit

Permalink
fix default initializer
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Figueroa Manrique <[email protected]>
  • Loading branch information
figueroa1395 committed Jan 2, 2025
1 parent b941ae5 commit 3c8f757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cpp_validation_tests/test_validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ OwningDataset load_dataset(std::filesystem::path const& path) {
#else // __clang_analyzer__ // issue in msgpack
(void)path;
// fallback for https://github.com/msgpack/msgpack-c/issues/1098
return OwningDataset{};
return OwningDataset{.dataset{"Empty dataset", false, Idx{1}}};
#endif // __clang_analyzer__ // issue in msgpack
}

Expand Down

0 comments on commit 3c8f757

Please sign in to comment.