Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
95d45311
Commit
95d45311
authored
Apr 29, 2009
by
wiebel
Browse files
[CHANGE] added const qualifier
parent
e3802ede
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/utils/BOptionHandler.cpp
src/utils/BOptionHandler.cpp
+1
-1
src/utils/BOptionHandler.h
src/utils/BOptionHandler.h
+1
-1
No files found.
src/utils/BOptionHandler.cpp
View file @
95d45311
...
...
@@ -68,7 +68,7 @@ void BOptionHandler::parseOptions()
po
::
store
(
po
::
parse_command_line
(
m_argc
,
m_argv
,
m_desc
),
m_map
);
}
int
BOptionHandler
::
takeActions
()
int
BOptionHandler
::
takeActions
()
const
{
if
(
m_errorOccured
)
{
...
...
src/utils/BOptionHandler.h
View file @
95d45311
...
...
@@ -48,7 +48,7 @@ public:
*
* \return Exitcode for main()
*/
int
takeActions
();
int
takeActions
()
const
;
protected:
private:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment