From: JINMEI Tatuya Date: Thu, 4 Oct 2012 04:14:44 +0000 (-0700) Subject: [2268] minor editorial fixes: spacing, combining two short lines X-Git-Tag: trac2402_base~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=247cb9c1d6ca73bb212cb9dfe0aa85dcf342e924;p=thirdparty%2Fkea.git [2268] minor editorial fixes: spacing, combining two short lines --- diff --git a/src/lib/datasrc/memory/zone_data_updater.cc b/src/lib/datasrc/memory/zone_data_updater.cc index 45c985e085..6d29255d7b 100644 --- a/src/lib/datasrc/memory/zone_data_updater.cc +++ b/src/lib/datasrc/memory/zone_data_updater.cc @@ -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); diff --git a/src/lib/datasrc/memory/zone_data_updater.h b/src/lib/datasrc/memory/zone_data_updater.h index f7df6f7927..5bb03a10a6 100644 --- a/src/lib/datasrc/memory/zone_data_updater.h +++ b/src/lib/datasrc/memory/zone_data_updater.h @@ -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,