diff --git a/src/Magnum/Context.cpp b/src/Magnum/Context.cpp index 458bea2d9..d584263fd 100644 --- a/src/Magnum/Context.cpp +++ b/src/Magnum/Context.cpp @@ -547,7 +547,7 @@ Context::Context(Context&& other): _version{std::move(other._version)}, #ifndef MAGNUM_TARGET_WEBGL _flags{std::move(other._flags)}, #endif - _extensionRequiredVersion{std::move(other._extensionRequiredVersion)}, + _extensionRequiredVersion(std::move(other._extensionRequiredVersion)), _extensionStatus{std::move(other._extensionStatus)}, _supportedExtensions{std::move(other._supportedExtensions)}, _state{std::move(other._state)},