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
86995f8b
Commit
86995f8b
authored
Mar 10, 2017
by
Tomek Mrugalski
🛰
Browse files
[5114] Compilation fix for FreeBSD11.0 x86 (see kea-multiconfig-build #5)
parent
567fdab0
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/bin/dhcp4/tests/get_config_unittest.cc
View file @
86995f8b
...
...
@@ -5873,6 +5873,6 @@ TEST_P(Dhcp4GetConfigTest, run) {
/// Define the parametrized test loop
INSTANTIATE_TEST_CASE_P
(
Dhcp4GetConfigTest
,
Dhcp4GetConfigTest
,
::
testing
::
Range
(
0UL
,
max_config_counter
));
::
testing
::
Range
(
static_cast
<
size_t
>
(
0
)
,
max_config_counter
));
};
src/bin/dhcp6/tests/get_config_unittest.cc
View file @
86995f8b
...
...
@@ -6100,6 +6100,6 @@ TEST_P(Dhcp6GetConfigTest, run) {
/// Define the parametrized test loop
INSTANTIATE_TEST_CASE_P
(
Dhcp6GetConfigTest
,
Dhcp6GetConfigTest
,
::
testing
::
Range
(
0UL
,
max_config_counter
));
::
testing
::
Range
(
static_cast
<
size_t
>
(
0
)
,
max_config_counter
));
};
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