From 000ed7b957b00d2dbad0d5ba64896b5b462d4f99 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 14 Sep 2024 13:47:32 -0500 Subject: [PATCH] xo-reactor: bugfix: TypeDescr::typeinfo() -> native_type_info() --- include/xo/reactor/Sink.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xo/reactor/Sink.hpp b/include/xo/reactor/Sink.hpp index 2ba561c7..51d71268 100644 --- a/include/xo/reactor/Sink.hpp +++ b/include/xo/reactor/Sink.hpp @@ -85,7 +85,7 @@ namespace xo { xtag("required_hashcode", typeid(Sink1).hash_code()), xtag("required_name", typeid(Sink1).name()), xtag("src_hashcode", src_hashcode), - xtag("sink_hashcode", sink->sink_ev_type()->typeinfo()->hash_code()) + xtag("sink_hashcode", sink->sink_ev_type()->native_typeinfo()->hash_code()) #ifdef DEBUG_EVENT_TYPEINFO , xtag("sink_hashcode", sink->item_typeinfo()->hash_code()) , xtag("sink_parent_hashcode", sink_parent_typeinfo->hash_code())