Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Adam Osuchowski
Kea
Commits
3511d115
Commit
3511d115
authored
Jun 07, 2013
by
Thomas Markwalder
Browse files
[2956] Re-review comment addressed. Restored "const" function type on
controller bool methods.
parent
031ae7d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/d2/d_controller.h
View file @
3511d115
...
...
@@ -344,7 +344,7 @@ protected:
/// @brief Supplies whether or not the controller is in stand alone mode.
///
/// @return returns true if in stand alone mode, false otherwise
bool
isStandAlone
()
{
bool
isStandAlone
()
const
{
return
(
stand_alone_
);
}
...
...
@@ -358,7 +358,7 @@ protected:
/// @brief Supplies whether or not verbose logging is enabled.
///
/// @return returns true if verbose logging is enabled.
bool
isVerbose
()
{
bool
isVerbose
()
const
{
return
(
verbose_
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment