mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 07:48:16 -05:00
chore: use filename of argv0 in UsageInformation
This commit is contained in:
@ -139,9 +139,9 @@ LinkerArgs::LinkerArgs()
|
||||
{
|
||||
}
|
||||
|
||||
void LinkerArgs::PrintUsage()
|
||||
void LinkerArgs::PrintUsage() const
|
||||
{
|
||||
UsageInformation usage("Linker.exe");
|
||||
UsageInformation usage(m_argument_parser.GetExecutableName());
|
||||
|
||||
for (const auto* commandLineOption : COMMAND_LINE_OPTIONS)
|
||||
{
|
||||
|
@ -59,7 +59,7 @@ private:
|
||||
/**
|
||||
* \brief Prints a command line usage help text for the Linker tool to stdout.
|
||||
*/
|
||||
static void PrintUsage();
|
||||
void PrintUsage() const;
|
||||
static void PrintVersion();
|
||||
|
||||
void SetBinFolder(const char* argv0);
|
||||
|
Reference in New Issue
Block a user