-------------------------------------------------------------------------
| 465 | |
| 466 | //------------------------------------------------------------------------- |
| 467 | std::wstring OptionsParser::GetTooLongCommandLineMessage() |
| 468 | { |
| 469 | return L"You have a very long command line. It might be truncated " |
| 470 | "as DOS maximum command line size is " + |
| 471 | std::to_wstring(DosCommandLineMaxSize) + |
| 472 | L". Please consider using --" + |
| 473 | Tools::LocalToWString(ProgramOptions::ConfigFileOption) + |
| 474 | L" instead."; |
| 475 | } |
| 476 | } |
nothing calls this directly
no test coverage detected