From 87e964ce69113142de3a470876833b4991c0a7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 9 Jun 2015 21:05:38 +0200 Subject: [PATCH] Fixed build on GCC < 5.1 and Clang. Apparently I can't do a change without breaking stuff somewhere. Sigh. --- src/Magnum/Context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)},