registry: removed superfluous ::template from type()

This commit is contained in:
Michele Caini
2019-12-01 23:24:28 +01:00
parent e2a7a7ce20
commit d2d068edff

View File

@@ -270,7 +270,7 @@ public:
*/
template<typename Component>
static component type() ENTT_NOEXCEPT {
return component{component_family::template type<std::decay_t<Component>>};
return component{component_family::type<std::decay_t<Component>>};
}
/**