| 84 | return opts; |
| 85 | } |
| 86 | static std::optional<int> Init(int argc, const wchar_t* const* wargv, bool captureDiagnostics = false) |
| 87 | { |
| 88 | ConvertedNarrowOptions_ narrowArgs{ argc, wargv }; |
| 89 | return Init(argc, narrowArgs.GetRawPointerArray(), captureDiagnostics); |
| 90 | } |
| 91 | static std::optional<int> Init(int argc, const char* const* argv, bool captureDiagnostics = false) noexcept |
| 92 | { |
| 93 | try { |
nothing calls this directly
no test coverage detected