Lots of documentation.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-09-22 19:32:40 +02:00
parent 95f1e818e7
commit 31b63d56db
15 changed files with 2724 additions and 33 deletions

View File

@@ -46,7 +46,7 @@ TEST_CASE("Literal stringview to non literal, then use", "[Utilities]") {
REQUIRE(strcmp(val.c_str(), "foobar") == 0);
}
TEST_CASE("Pipe stringview into strean", "[Utilities]") {
TEST_CASE("Pipe stringview into stream", "[Utilities]") {
std::stringstream ss;
ArbUt::StringView val = "foo";
ss << val;