diff options
-rw-r--r-- | engines/sci/util.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sci/util.h b/engines/sci/util.h index 1a054e11db..edaa0ca476 100644 --- a/engines/sci/util.h +++ b/engines/sci/util.h @@ -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) {} |