diff --git a/SDL2pp/ExtraRWops.hh b/SDL2pp/ExtraRWops.hh index 27a7f38..75175e5 100644 --- a/SDL2pp/ExtraRWops.hh +++ b/SDL2pp/ExtraRWops.hh @@ -37,10 +37,10 @@ public: ContainerRWops(C& container) : container_(container), position_(0) { } - ContainerRWops(const ContainerRWops&) = default; - ContainerRWops& operator=(const ContainerRWops&) = delete; - ContainerRWops(ContainerRWops&&) noexcept = default; - ContainerRWops& operator=(ContainerRWops&&) = delete; + ContainerRWops(const ContainerRWops&) = default; + ContainerRWops& operator=(const ContainerRWops&) = delete; + ContainerRWops(ContainerRWops&&) noexcept = default; + ContainerRWops& operator=(ContainerRWops&&) = delete; virtual Sint64 Seek(Sint64 offset, int whence) override { switch (whence) { @@ -98,10 +98,10 @@ public: ConstContainerRWops(const C& container) : container_(container), position_(0) { } - ConstContainerRWops(const ConstContainerRWops&) = default; - ConstContainerRWops& operator=(const ConstContainerRWops&) = delete; - ConstContainerRWops(ConstContainerRWops&&) noexcept = default; - ConstContainerRWops& operator=(ConstContainerRWops&&) = delete; + ConstContainerRWops(const ConstContainerRWops&) = default; + ConstContainerRWops& operator=(const ConstContainerRWops&) = delete; + ConstContainerRWops(ConstContainerRWops&&) noexcept = default; + ConstContainerRWops& operator=(ConstContainerRWops&&) = delete; virtual Sint64 Seek(Sint64 offset, int whence) override { switch (whence) {