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
65ce062a
Commit
65ce062a
authored
Dec 13, 2012
by
JINMEI Tatuya
Browse files
[2379] style fix: place return type on a separate line.
parent
153bda11
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/python/isc/datasrc/zone_loader_python.cc
View file @
65ce062a
...
...
@@ -106,7 +106,8 @@ ZoneLoader_destroy(PyObject* po_self) {
Py_TYPE
(
self
)
->
tp_free
(
self
);
}
PyObject
*
ZoneLoader_load
(
PyObject
*
po_self
,
PyObject
*
)
{
PyObject
*
ZoneLoader_load
(
PyObject
*
po_self
,
PyObject
*
)
{
s_ZoneLoader
*
self
=
static_cast
<
s_ZoneLoader
*>
(
po_self
);
try
{
self
->
cppobj
->
load
();
...
...
@@ -130,7 +131,8 @@ PyObject* ZoneLoader_load(PyObject* po_self, PyObject*) {
}
}
PyObject
*
ZoneLoader_loadIncremental
(
PyObject
*
po_self
,
PyObject
*
args
)
{
PyObject
*
ZoneLoader_loadIncremental
(
PyObject
*
po_self
,
PyObject
*
args
)
{
s_ZoneLoader
*
self
=
static_cast
<
s_ZoneLoader
*>
(
po_self
);
int
limit
;
...
...
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