| just opened a file and...ugh https://android.googlesource.com/platform/art/+/refs/heads/m... like, just this, basically C: if (strncmp(argv[arg_idx], "-XXlib:", strlen("-XXlib:")) == 0) {
...
is just so complicated and error-prone over if(std::string_view{argv[arg_idx]}.starts_with("-XXlib:"))
...
(which I guess is the intent) |