54 auto argStr = std::string_view(args);
57 std::vector<std::string_view> options;
61 while ((end = argStr.find(
";", start)) != std::string_view::npos) {
62 options.push_back(argStr.substr(start, end - start));
65 if (start <= argStr.size())
66 options.push_back(argStr.substr(start));
69 for (
auto &option : options) {
70 if (option ==
"debug")