Explorar el Código

removed wrong ENTT_NOEXCEPT (close #233)

Michele Caini hace 7 años
padre
commit
95b90974a2
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/entt/resource/cache.hpp

+ 2 - 2
src/entt/resource/cache.hpp

@@ -40,10 +40,10 @@ public:
     resource_cache() = default;
 
     /*! @brief Default move constructor. */
-    resource_cache(resource_cache &&) ENTT_NOEXCEPT = default;
+    resource_cache(resource_cache &&) = default;
 
     /*! @brief Default move assignment operator. @return This cache. */
-    resource_cache & operator=(resource_cache &&) ENTT_NOEXCEPT = default;
+    resource_cache & operator=(resource_cache &&) = default;
 
     /**
      * @brief Number of resources managed by a cache.