the default ctor of entt::meta_factory should be public

This commit is contained in:
Michele Caini
2019-09-03 23:24:15 +02:00
parent 083a58753b
commit 67f80ee111

View File

@@ -320,9 +320,10 @@ class meta_factory {
}
}
public:
/*! @brief Default constructor. */
meta_factory() ENTT_NOEXCEPT = default;
public:
/**
* @brief Extends a meta type by assigning it an identifier and properties.
* @tparam Property Types of properties to assign to the meta type.