This fixes an assertion error where the bracket of the nested template class was stripped during register_component_typed.
For example, I have a namespaced struct some::namespace::Struct<another::namespace::Inner>, it should pass the symbol Struct<Inner> to flecs. Whereas before, it passes Inner> which then caused the program to halt.
This fixes an assertion error where the bracket of the nested template class was stripped during
register_component_typed
. For example, I have a namespaced structsome::namespace::Struct<another::namespace::Inner>
, it should pass the symbolStruct<Inner>
to flecs. Whereas before, it passesInner>
which then caused the program to halt.