1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 22:15:06 +00:00

LibCore+Everywhere: Remove ArgsParser::add*(char const*&)

This is not guaranteed to always work correctly as ArgsParser deals in
StringViews and might have a non-properly-null-terminated string as a
value. As a bonus, using StringView (and DeprecatedString where
necessary) leads to nicer looking code too :^)
This commit is contained in:
Ali Mohammad Pur 2023-03-01 00:11:43 +03:30 committed by Andreas Kling
parent 60908adcbe
commit 500044906d
43 changed files with 122 additions and 145 deletions

View file

@ -94,7 +94,7 @@ int main(int argc, char** argv)
#endif
bool print_json = false;
bool per_file = false;
char const* specified_test_root = nullptr;
StringView specified_test_root;
DeprecatedString common_path;
DeprecatedString test_glob;
@ -143,7 +143,7 @@ int main(int argc, char** argv)
DeprecatedString test_root;
if (specified_test_root) {
if (!specified_test_root.is_empty()) {
test_root = DeprecatedString { specified_test_root };
} else {
#ifdef AK_OS_SERENITY