Pārlūkot izejas kodu

meta: drop redundant assert

skypjack 2 gadi atpakaļ
vecāks
revīzija
b3c0d91eb3
1 mainītis faili ar 0 papildinājumiem un 1 dzēšanām
  1. 0 1
      src/entt/meta/meta.hpp

+ 0 - 1
src/entt/meta/meta.hpp

@@ -1644,7 +1644,6 @@ bool meta_any::set(const id_type id, Type &&value) {
     if(node.conversion_helper && (type.is_arithmetic() || type.is_enum())) {
         // exploits the fact that arithmetic types and enums are also default constructible
         auto other = type.construct();
-        ENTT_ASSERT(other.node.conversion_helper, "Conversion helper not found");
         const auto value = node.conversion_helper(nullptr, data());
         other.node.conversion_helper(other.data(), &value);
         return other;