[keel] Make default repair return a no repair error

This commit is contained in:
Gary Talent 2024-09-07 23:15:15 -05:00
parent 712299faf3
commit 1d262597a8

View File

@ -29,7 +29,7 @@ constexpr bool valid(auto const&) noexcept {
[[nodiscard]]
constexpr ox::Error repair(auto const&) noexcept {
return {};
return OxError(1, "No repair function for this type");
}
#ifndef OX_BARE_METAL