diff --git a/src/Magnum/GL/Context.cpp b/src/Magnum/GL/Context.cpp index 53d9463bf..2fbc7d6b2 100644 --- a/src/Magnum/GL/Context.cpp +++ b/src/Magnum/GL/Context.cpp @@ -751,7 +751,7 @@ Context::Context(Context&& other) noexcept: #ifdef MAGNUM_BUILD_DEPRECATED _supportedExtensions{std::move(other._supportedExtensions)}, #endif - _state{std::move(other._state)}, + _state{other._state}, _detectedDrivers{std::move(other._detectedDrivers)}, _driverWorkarounds{std::move(other._driverWorkarounds)}, _disabledExtensions{std::move(other._disabledExtensions)},