Browse Source

storage: minor change to suppress doc warning

skypjack 3 days ago
parent
commit
eec10a861e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/entity/storage.hpp

+ 1 - 1
src/entt/entity/storage.hpp

@@ -891,7 +891,7 @@ public:
      *
      * @param entt A valid identifier.
      */
-    auto emplace(const entity_type entt, const auto &...) {
+    void emplace(const entity_type entt, const auto &...) {
         base_type::try_emplace(entt, false);
     }