Skip to content

Commit 71dd9f5

Browse files
committed
fix: use string_view data
1 parent 34a9e37 commit 71dd9f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/Support/Handlebars.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@ findTag(std::string_view &tag, std::string_view templateText)
10201020
if (escaped)
10211021
{
10221022
bool const doubleEscaped = pos != 1 && templateText[pos - 2] == '\\';
1023-
tag = {tag.begin() - 1 - doubleEscaped, tag.end()};
1023+
tag = {tag.data() - 1 - doubleEscaped, tag.data() + tag.size()};
10241024
}
10251025
return true;
10261026
}

0 commit comments

Comments
 (0)