Core/String: Fix IsNull() method (thanks to Unit tests)
Former-commit-id: dd4828c3c0e2d3423094cf018e70fd74deac0740
This commit is contained in:
parent
859544eaa7
commit
466720abec
|
|
@ -307,7 +307,7 @@ class NAZARA_CORE_API NzString : public NzHashable
|
|||
bool FillHash(NzAbstractHash* hash) const;
|
||||
inline void ReleaseString();
|
||||
|
||||
static std::shared_ptr<SharedString> GetEmptyString();
|
||||
static const std::shared_ptr<SharedString>& GetEmptyString();
|
||||
|
||||
std::shared_ptr<SharedString> m_sharedString;
|
||||
|
||||
|
|
|
|||
|
|
@ -1934,7 +1934,7 @@ bool NzString::IsEmpty() const
|
|||
|
||||
bool NzString::IsNull() const
|
||||
{
|
||||
return !m_sharedString.get();
|
||||
return m_sharedString.get() == GetEmptyString().get();
|
||||
}
|
||||
|
||||
bool NzString::IsNumber(nzUInt8 base, nzUInt32 flags) const
|
||||
|
|
@ -4198,7 +4198,7 @@ bool NzString::FillHash(NzAbstractHash* hash) const
|
|||
return true;
|
||||
}
|
||||
|
||||
std::shared_ptr<NzString::SharedString> NzString::GetEmptyString()
|
||||
const std::shared_ptr<NzString::SharedString>& NzString::GetEmptyString()
|
||||
{
|
||||
static auto emptyString = std::make_shared<SharedString>();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue