This commit is contained in:
Branimir Karadžić
2018-10-23 21:20:16 -07:00
parent 0af3748629
commit 98f49cfe6b

View File

@@ -557,7 +557,7 @@ namespace bx
return StringView(eol.getTerm(), _str.getTerm() );
}
eol = strFind(str, "\n");
eol = strFind(str, '\n');
if (!eol.isEmpty() )
{
return StringView(eol.getTerm(), _str.getTerm() );
@@ -581,7 +581,7 @@ namespace bx
return StringView(eol.getPtr(), _str.getTerm() );
}
eol = strFind(str, "\n");
eol = strFind(str, '\n');
if (!eol.isEmpty() )
{
return StringView(eol.getPtr(), _str.getTerm() );