]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5114] Overly wrapped lines unwrapped
authorTomek Mrugalski <tomasz@isc.org>
Thu, 9 Mar 2017 14:14:50 +0000 (15:14 +0100)
committerTomek Mrugalski <tomasz@isc.org>
Thu, 9 Mar 2017 14:14:50 +0000 (15:14 +0100)
src/lib/cc/simple_parser.h

index 3ff60b7bb86f84c52e783f6a4d06e7d083d2e785..17d257dad41ea2dbced3fa2ef8a582c4a6f5126a 100644 (file)
@@ -212,8 +212,7 @@ protected:
     /// @param name name of the parameter
     /// @return an uint32_t value
     /// @throw isc::dhcp::DhcpConfigError when it is not an uint32_t
-    uint32_t getUint32(isc::data::ConstElementPtr scope,
-                       const std::string& name) {
+    uint32_t getUint32(isc::data::ConstElementPtr scope, const std::string& name) {
         return (getIntType<uint32_t>(scope, name));
     }
 
@@ -225,8 +224,7 @@ protected:
     /// @param name name of the parameter
     /// @return an uint16_t value
     /// @throw isc::dhcp::DhcpConfigError when it is not an uint16_t
-    uint16_t getUint16(isc::data::ConstElementPtr scope,
-                       const std::string& name) {
+    uint16_t getUint16(isc::data::ConstElementPtr scope, const std::string& name) {
         return (getIntType<uint16_t>(scope, name));
     }