diff --git a/src/Magnum/Resource.h b/src/Magnum/Resource.h index e779606e0..6474bb041 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 std::swap; + using Utility::swap; swap(_manager, other._manager); swap(_key, other._key); swap(_lastCheck, other._lastCheck);