This commit is contained in:
Wojtek Figat
2023-10-03 12:23:36 +02:00
parent ee83c60e1f
commit 58c6e0cd15

View File

@@ -365,7 +365,7 @@ float DataView::toFloat() const
bool DataView::operator==(const char* rhs) const
{
if (!begin) return false;
if (!begin) return !rhs[0];
const char* c = rhs;
const char* c2 = (const char*)begin;
while (*c && c2 != (const char*)end)