Browse Source

Vk: minor.

Name the move constructor/assignment arguments so it's clearer that it's
indeed a custom implementation and not just a defaulted function moved
into the cpp.
pull/494/head
Vladimír Vondruš 5 years ago
parent
commit
6e1920e367
  1. 4
      src/Magnum/Vk/RenderPassCreateInfo.h

4
src/Magnum/Vk/RenderPassCreateInfo.h

@ -546,7 +546,7 @@ class MAGNUM_VK_EXPORT SubpassDescription {
SubpassDescription(const SubpassDescription&) = delete; SubpassDescription(const SubpassDescription&) = delete;
/** @brief Move constructor */ /** @brief Move constructor */
SubpassDescription(SubpassDescription&&) noexcept; SubpassDescription(SubpassDescription&& other) noexcept;
~SubpassDescription(); ~SubpassDescription();
@ -554,7 +554,7 @@ class MAGNUM_VK_EXPORT SubpassDescription {
SubpassDescription& operator=(const SubpassDescription&) = delete; SubpassDescription& operator=(const SubpassDescription&) = delete;
/** @brief Move assignment */ /** @brief Move assignment */
SubpassDescription& operator=(SubpassDescription&&) noexcept; SubpassDescription& operator=(SubpassDescription&& other) noexcept;
/** /**
* @brief Set input attachments * @brief Set input attachments

Loading…
Cancel
Save