From: Tomek Mrugalski Date: Thu, 9 Mar 2017 14:14:50 +0000 (+0100) Subject: [5114] Overly wrapped lines unwrapped X-Git-Tag: trac5152_base~3^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe07268a2b6578774e11cdaf919241558b8bd20f;p=thirdparty%2Fkea.git [5114] Overly wrapped lines unwrapped --- diff --git a/src/lib/cc/simple_parser.h b/src/lib/cc/simple_parser.h index 3ff60b7bb8..17d257dad4 100644 --- a/src/lib/cc/simple_parser.h +++ b/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(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(scope, name)); }