BIND 10 trac2379_2, updated. 65ce062ac130500177a0adc4100289b8879c601c [2379] style fix: place return type on a separate line.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Dec 13 20:24:59 UTC 2012
The branch, trac2379_2 has been updated
via 65ce062ac130500177a0adc4100289b8879c601c (commit)
from 153bda11f4773ba8123c66d4a2d498a18a7b686a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 65ce062ac130500177a0adc4100289b8879c601c
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Dec 13 12:24:42 2012 -0800
[2379] style fix: place return type on a separate line.
-----------------------------------------------------------------------
Summary of changes:
src/lib/python/isc/datasrc/zone_loader_python.cc | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/datasrc/zone_loader_python.cc b/src/lib/python/isc/datasrc/zone_loader_python.cc
index 11ec272..b785d80 100644
--- a/src/lib/python/isc/datasrc/zone_loader_python.cc
+++ b/src/lib/python/isc/datasrc/zone_loader_python.cc
@@ -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;
More information about the bind10-changes
mailing list