Browse Source

resource_handle: minor changes

Michele Caini 4 years ago
parent
commit
1a1ed55485
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/resource/handle.hpp

+ 1 - 1
src/entt/resource/handle.hpp

@@ -62,7 +62,7 @@ public:
      * @param res Unrelated and unmanaged resources.
      */
     template<typename Other>
-    resource_handle(const resource_handle<Other> &other, resource_type &res) noexcept
+    resource_handle(const resource_handle<Other> &other, resource_type &res) ENTT_NOEXCEPT
         : resource{other.resource, std::addressof(res)} {}
 
     /**