mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-22 10:17:22 +00:00
SCI: Avoid shadow warnings in old GCC
This commit is contained in:
parent
a233696212
commit
cb4f06fb70
@ -157,9 +157,9 @@ public:
|
||||
|
||||
inline SciSpanImpl(const pointer data_,
|
||||
const size_type size_,
|
||||
const Common::String &name = Common::String(),
|
||||
const size_type sourceByteOffset = 0) :
|
||||
super_type(data_, size_, name, sourceByteOffset) {}
|
||||
const Common::String &name_ = Common::String(),
|
||||
const size_type sourceByteOffset_ = 0) :
|
||||
super_type(data_, size_, name_, sourceByteOffset_) {}
|
||||
|
||||
template <typename Other>
|
||||
inline SciSpanImpl(const Other &other) : super_type(other) {}
|
||||
@ -265,9 +265,9 @@ public:
|
||||
|
||||
inline SciSpan(const pointer data_,
|
||||
const size_type size_,
|
||||
const Common::String &name = Common::String(),
|
||||
const size_type sourceByteOffset = 0) :
|
||||
super_type(data_, size_, name, sourceByteOffset) {}
|
||||
const Common::String &name_ = Common::String(),
|
||||
const size_type sourceByteOffset_ = 0) :
|
||||
super_type(data_, size_, name_, sourceByteOffset_) {}
|
||||
|
||||
template <typename Other>
|
||||
inline SciSpan(const Other &other) : super_type(other) {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user