core: Silence warnings when compiling without asserts

This commit is contained in:
ReinUsesLisp 2021-01-05 04:18:16 -03:00
parent 7ba63cf225
commit 64d9ef5e7a
5 changed files with 11 additions and 8 deletions

View file

@ -64,6 +64,7 @@ Network::Type Translate(Type type) {
return Network::Type::DGRAM;
default:
UNIMPLEMENTED_MSG("Unimplemented type={}", type);
return Network::Type{};
}
}