Bladeren bron

emitter: cleanup

Michele Caini 1 jaar geleden
bovenliggende
commit
7bfc92d20e
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      src/entt/signal/emitter.hpp

+ 1 - 1
src/entt/signal/emitter.hpp

@@ -73,7 +73,7 @@ public:
      * @param other The instance to move from.
      * @param allocator The allocator to use.
      */
-    emitter(emitter &&other, const allocator_type &allocator) noexcept
+    emitter(emitter &&other, const allocator_type &allocator)
         : handlers{container_type{std::move(other.handlers.first()), allocator}, allocator} {
         ENTT_ASSERT(alloc_traits::is_always_equal::value || handlers.second() == other.handlers.second(), "Copying an emitter is not allowed");
     }