1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

Utilities: Read positional arguments as Strings not char*s

This is a pretty trivial change so they're all batched together.
This commit is contained in:
Sam Atkins 2022-04-02 16:48:05 +01:00 committed by Andreas Kling
parent 84b67754c0
commit f0aba519c3
Notes: sideshowbarker 2024-07-17 12:05:16 +09:00
18 changed files with 46 additions and 52 deletions

View file

@ -53,7 +53,7 @@ ErrorOr<int> serenity_main(Main::Arguments args)
#endif
bool inplace = false;
Vector<char const*> files;
Vector<String> files;
Core::ArgsParser args_parser;
args_parser.set_general_help("Format GML files.");