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
Sebastian Schrader
Kea
Commits
b6925301
Commit
b6925301
authored
Jun 03, 2013
by
Mukund Sivaraman
Browse files
[2852] Rename local variable (don't use member variable syntax)
parent
e58e8639
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/datasrc/tests/client_list_unittest.cc
View file @
b6925301
...
...
@@ -187,14 +187,14 @@ public:
// Load the data into the zone table.
if
(
enabled
)
{
const
ConstElementPtr
config_ztable_segment
_
(
const
ConstElementPtr
config_ztable_segment
(
Element
::
fromJSON
(
"{
\"
mapped-file
\"
:
\"
"
+
getMappedFilename
(
index
)
+
"
\"
}"
));
list_
->
resetMemorySegment
(
dsrc_info
.
name_
,
memory
::
ZoneTableSegment
::
CREATE
,
config_ztable_segment
_
);
config_ztable_segment
);
boost
::
scoped_ptr
<
memory
::
ZoneWriter
>
writer
(
new
memory
::
ZoneWriter
(
...
...
@@ -207,7 +207,7 @@ public:
list_
->
resetMemorySegment
(
dsrc_info
.
name_
,
memory
::
ZoneTableSegment
::
READ_WRITE
,
config_ztable_segment
_
);
config_ztable_segment
);
}
// On completion of load revert to the previous state of underlying
...
...
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