Removed StringView ctor/set argument default values.

This commit is contained in:
Бранимир Караџић
2023-05-09 18:17:01 -07:00
parent f1296fb7e0
commit 7e6f30a241
3 changed files with 19 additions and 3 deletions

View File

@@ -584,7 +584,7 @@ TEST_CASE("strWord", "")
TEST_CASE("strFindBlock", "")
{
const bx::StringView test0("{ { {} {} abvgd; {} } }");
const bx::StringView test1(test0, 1);
const bx::StringView test1(test0, 1, INT32_MAX);
bx::StringView result = bx::strFindBlock(test1, '{', '}');
REQUIRE(19 == result.getLength() );