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
44f835de
Commit
44f835de
authored
Dec 06, 2012
by
JINMEI Tatuya
Browse files
[2377] constify
parent
2f3467a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/master_loader.cc
View file @
44f835de
...
...
@@ -190,7 +190,7 @@ MasterLoader::~MasterLoader() {
bool
MasterLoader
::
loadIncremental
(
size_t
count_limit
)
{
bool
result
=
impl_
->
loadIncremental
(
count_limit
);
const
bool
result
=
impl_
->
loadIncremental
(
count_limit
);
impl_
->
complete_
=
result
;
return
(
result
);
}
...
...
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