Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Willers
KWSys
Commits
d389e401
Commit
d389e401
authored
20 years ago
by
Ken Martin
Browse files
Options
Downloads
Patches
Plain Diff
ERR: Fix borland build
parent
b7521bd2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CommandLineArguments.cxx
+12
-0
12 additions, 0 deletions
CommandLineArguments.cxx
CommandLineArguments.hxx.in
+1
-0
1 addition, 0 deletions
CommandLineArguments.hxx.in
with
13 additions
and
0 deletions
CommandLineArguments.cxx
+
12
−
0
View file @
d389e401
...
...
@@ -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
()
{
...
...
This diff is collapsed.
Click to expand it.
CommandLineArguments.hxx.in
+
1
−
0
View file @
d389e401
...
...
@@ -86,6 +86,7 @@ public:
* Initialize internal data structures. This should be called before parsing.
*/
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment