From 168143510b73c25fc2eb70190721c40ac8d1f023 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Fri, 5 Sep 2014 05:41:59 +0400 Subject: [PATCH] Mention template args --- SDL2pp/ExtraRWops.hh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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) {