1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:37:34 +00:00

UserspaceEmulator: Fix after add_positional_argument API change :^)

Get UE compiling again after the Vector<String> API was changed to
Vector<StringView>.
This commit is contained in:
Brian Gianforcaro 2021-11-26 16:11:07 -08:00 committed by Brian Gianforcaro
parent 957f54d96f
commit f807796380
3 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@ bool g_report_to_debug = false;
int main(int argc, char** argv, char** env)
{
Vector<String> arguments;
Vector<StringView> arguments;
bool pause_on_startup { false };
String profile_dump_path;
FILE* profile_output_file { nullptr };