mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48:21 +00:00
Make char*/wchar_t* split methods use string_view/wstring_view
This commit is contained in:
parent
b41a4bf06d
commit
701fc3654a
2 changed files with 6 additions and 6 deletions
|
@ -2716,8 +2716,8 @@ TEST_CASE("util filesystem")
|
|||
|
||||
TEST_CASE("util split")
|
||||
{
|
||||
using str_vec = std::vector<std::string>;
|
||||
using wstr_vec = std::vector<std::wstring>;
|
||||
using str_vec = std::vector<std::string_view>;
|
||||
using wstr_vec = std::vector<std::wstring_view>;
|
||||
|
||||
SUBCASE("w/ delim")
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue