diff --git a/src/Magnum/Resource.h b/src/Magnum/Resource.h index 6474bb041..e779606e0 100644 --- a/src/Magnum/Resource.h +++ b/src/Magnum/Resource.h @@ -271,7 +271,7 @@ template Resource::Resource(Resource&& other) noex } template Resource& Resource::operator=(Resource&& other) noexcept { - using Utility::swap; + using std::swap; swap(_manager, other._manager); swap(_key, other._key); swap(_lastCheck, other._lastCheck);