Commit e65ac013 authored by Joseph Noir's avatar Joseph Noir

Fix throw in noexcept warning

parent d6be91aa
...@@ -100,11 +100,11 @@ uint32_t empty_type_erased_tuple::type_token() const noexcept { ...@@ -100,11 +100,11 @@ uint32_t empty_type_erased_tuple::type_token() const noexcept {
} }
auto empty_type_erased_tuple::type(size_t) const noexcept -> rtti_pair { auto empty_type_erased_tuple::type(size_t) const noexcept -> rtti_pair {
CAF_RAISE_ERROR("empty_type_erased_tuple::type"); CAF_CRITICAL("empty_type_erased_tuple::type");
} }
const void* empty_type_erased_tuple::get(size_t) const noexcept { const void* empty_type_erased_tuple::get(size_t) const noexcept {
CAF_RAISE_ERROR("empty_type_erased_tuple::get"); CAF_CRITICAL("empty_type_erased_tuple::get");
} }
std::string empty_type_erased_tuple::stringify(size_t) const { std::string empty_type_erased_tuple::stringify(size_t) const {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment