mirror of
https://github.com/libSDL2pp/libSDL2pp.git
synced 2025-09-16 02:39:25 -04:00
Mention template args
This commit is contained in:
parent
3e5b392075
commit
168143510b
@ -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<C>&) = default;
|
||||
ContainerRWops& operator=(const ContainerRWops<C>&) = delete;
|
||||
ContainerRWops(ContainerRWops<C>&&) noexcept = default;
|
||||
ContainerRWops& operator=(ContainerRWops<C>&&) = 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<C>&) = default;
|
||||
ConstContainerRWops& operator=(const ConstContainerRWops<C>&) = delete;
|
||||
ConstContainerRWops(ConstContainerRWops<C>&&) noexcept = default;
|
||||
ConstContainerRWops& operator=(ConstContainerRWops<C>&&) = delete;
|
||||
|
||||
virtual Sint64 Seek(Sint64 offset, int whence) override {
|
||||
switch (whence) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user