Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
fe07268a
Commit
fe07268a
authored
Mar 09, 2017
by
Tomek Mrugalski
🛰
Browse files
[5114] Overly wrapped lines unwrapped
parent
bca52275
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/cc/simple_parser.h
View file @
fe07268a
...
...
@@ -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
));
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment