]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2268] minor editorial fixes: spacing, combining two short lines
authorJINMEI Tatuya <jinmei@isc.org>
Thu, 4 Oct 2012 04:14:44 +0000 (21:14 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Thu, 4 Oct 2012 04:14:44 +0000 (21:14 -0700)
src/lib/datasrc/memory/zone_data_updater.cc
src/lib/datasrc/memory/zone_data_updater.h

index 45c985e085357846d77df75d08cee8a2d1cff471..6d29255d7ba4890297e56e7a1715a24aa574ccf8 100644 (file)
@@ -34,8 +34,7 @@ namespace { // anonymous namespace
 // function is such that often-used types such as A, AAAA, NS, SOA, MX,
 // etc.  are less than other types. See the code for the ordering.
 int
-compareTypes(const RdataSet* a,
-             const RdataSet* b) {
+compareTypes(const RdataSet* a, const RdataSet* b) {
     // First RRType::A()
     if (a->type == RRType::A()) {
         return (-1);
index f7df6f792726ecbff3d422d44da88513727fa569..5bb03a10a6dc01c3fb2054349be7ed3363c516b3 100644 (file)
@@ -50,7 +50,7 @@ public:
     struct NullRRset : public InvalidParameter {
         NullRRset(const char* file, size_t line, const char* what) :
             InvalidParameter(file, line, what)
-        { }
+        {}
     };
 
     /// \brief Zone is empty exception.
@@ -60,7 +60,7 @@ public:
     struct EmptyZone : public InvalidParameter {
         EmptyZone(const char* file, size_t line, const char* what) :
             InvalidParameter(file, line, what)
-        { }
+        {}
     };
 
     /// \brief General failure exception for \c add().
@@ -75,7 +75,7 @@ public:
     struct AddError : public InvalidParameter {
         AddError(const char* file, size_t line, const char* what) :
             InvalidParameter(file, line, what)
-        { }
+        {}
     };
 
     void add(const isc::dns::ConstRRsetPtr& rrset,