Browse Source

GL: remove an unneeded std::move().

pull/521/head
Aaron Gokaslan 5 years ago committed by Vladimír Vondruš
parent
commit
1cfa2d0fce
  1. 2
      src/Magnum/GL/Context.cpp

2
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)},

Loading…
Cancel
Save