Browse Source

[5114] Overly wrapped lines unwrapped

Tomek Mrugalski 8 years ago
parent
commit
fe07268a2b
1 changed files with 2 additions and 4 deletions
  1. 2 4
      src/lib/cc/simple_parser.h

+ 2 - 4
src/lib/cc/simple_parser.h

@@ -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));
     }