From 1cfa2d0fce7f791b8845b671d1b1b168be32c774 Mon Sep 17 00:00:00 2001 From: Aaron Gokaslan Date: Tue, 15 Jun 2021 09:10:46 +0200 Subject: [PATCH] GL: remove an unneeded std::move(). --- src/Magnum/GL/Context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)},