Skip to content
Snippets Groups Projects
Commit d389e401 authored by Ken Martin's avatar Ken Martin
Browse files

ERR: Fix borland build

parent b7521bd2
No related branches found
No related tags found
No related merge requests found
...@@ -101,6 +101,18 @@ void CommandLineArguments::Initialize(int argc, const char* const argv[]) ...@@ -101,6 +101,18 @@ void CommandLineArguments::Initialize(int argc, const char* const argv[])
} }
} }
//----------------------------------------------------------------------------
void CommandLineArguments::Initialize(int argc, char* argv[])
{
int cc;
this->Initialize();
for ( cc = 1; cc < argc; cc ++ )
{
this->ProcessArgument(argv[cc]);
}
}
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
void CommandLineArguments::Initialize() void CommandLineArguments::Initialize()
{ {
......
...@@ -86,6 +86,7 @@ public: ...@@ -86,6 +86,7 @@ public:
* Initialize internal data structures. This should be called before parsing. * Initialize internal data structures. This should be called before parsing.
*/ */
void Initialize(int argc, const char* const argv[]); void Initialize(int argc, const char* const argv[]);
void Initialize(int argc, char* argv[]);
/** /**
* Initialize internal data structure and pass arguments one by one. This is * Initialize internal data structure and pass arguments one by one. This is
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment