ENH: increase some string_view coverage

- remove some stdFoam::span<char> handling, which was just a stop-gap
  measure
This commit is contained in:
Mark Olesen
2025-09-29 10:18:11 +02:00
parent 9223d238bd
commit 2396828a60
8 changed files with 94 additions and 150 deletions

View File

@ -59,11 +59,6 @@ int main(int argc, char *argv[])
<< " type: " << typeid(cstr).name() << " len:" << len << nl;
Info<< " view: " << std::string_view(cstr) << nl;
Info<< " span: "
<< stdFoam::span<const char>(cstr, len) << nl;
Info<< " span: "
<< stdFoam::span<char>(const_cast<char*>(cstr), len) << nl;
}
}