From 67f80ee111c70a80007c54a86f62f263f62bd92b Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Tue, 3 Sep 2019 23:24:15 +0200 Subject: [PATCH] the default ctor of entt::meta_factory should be public --- src/entt/meta/factory.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/entt/meta/factory.hpp b/src/entt/meta/factory.hpp index 632d2371d..a97af90fe 100644 --- a/src/entt/meta/factory.hpp +++ b/src/entt/meta/factory.hpp @@ -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.