Browse Source

TextureTools: document that AtlasLandfill has destructive move.

pull/168/head
Vladimír Vondruš 3 years ago
parent
commit
bcebdd7887
  1. 7
      src/Magnum/TextureTools/Atlas.h

7
src/Magnum/TextureTools/Atlas.h

@ -218,7 +218,12 @@ class MAGNUM_TEXTURETOOLS_EXPORT AtlasLandfill {
/** @brief Copying is not allowed */
AtlasLandfill(const AtlasLandfill&) = delete;
/** @brief Move constructor */
/**
* @brief Move constructor
*
* Performs a destructive move, i.e. the original object isn't usable
* afterwards anymore.
*/
AtlasLandfill(AtlasLandfill&&) noexcept;
~AtlasLandfill();

Loading…
Cancel
Save