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
ISC Open Source Projects
Kea
Commits
4f8118c5
Commit
4f8118c5
authored
Jul 14, 2017
by
Marcin Siodelski
Browse files
[5329] Removed odd "return void" construct which horrifies Thomas.
Hopefully, that will make Thomas'es weekend nicer.
parent
9da1db53
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/hooks/hooks_manager.cc
View file @
4f8118c5
...
...
@@ -64,12 +64,12 @@ HooksManager::commandHandlersPresent(const std::string& command_name) {
void
HooksManager
::
callCalloutsInternal
(
int
index
,
CalloutHandle
&
handle
)
{
conditionallyInitialize
();
return
(
callout_manager_
->
callCallouts
(
index
,
handle
)
)
;
callout_manager_
->
callCallouts
(
index
,
handle
);
}
void
HooksManager
::
callCallouts
(
int
index
,
CalloutHandle
&
handle
)
{
return
(
getHooksManager
().
callCalloutsInternal
(
index
,
handle
)
)
;
getHooksManager
().
callCalloutsInternal
(
index
,
handle
);
}
void
...
...
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