Browse Source

the default ctor of entt::meta_factory should be public

Michele Caini 6 years ago
parent
commit
67f80ee111
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/entt/meta/factory.hpp

+ 2 - 1
src/entt/meta/factory.hpp

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