From 7391c0a059f68206a854f3d4b2d6854f7dc38513 Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Thu, 7 Jul 2016 09:57:18 +0200 Subject: [PATCH] [master] Added template param in invocation of SpecializedTypeWrapper. This was an obvious error and a trivial fix. Therefore it is being committed on my discretion. It corrects build failures on some OSes after merge of #4321. --- src/bin/dhcp6/tests/dhcp6_test_utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/dhcp6/tests/dhcp6_test_utils.h b/src/bin/dhcp6/tests/dhcp6_test_utils.h index 42d6816e51..ab04d0e3f0 100644 --- a/src/bin/dhcp6/tests/dhcp6_test_utils.h +++ b/src/bin/dhcp6/tests/dhcp6_test_utils.h @@ -72,7 +72,7 @@ struct IAID : public SpecializedTypeWrapper { /// /// @param iaid IAID. explicit IAID(const uint32_t iaid) - : SpecializedTypeWrapper(iaid) { } + : SpecializedTypeWrapper(iaid) { } }; /// @brief Class representing strongly typed value for strict IAID checks. @@ -86,7 +86,7 @@ struct StrictIAIDChecking : public SpecializedTypeWrapper { /// @param strict_check Boolean value indicating if strict checking should /// be performed. explicit StrictIAIDChecking(const bool strict_check) - : SpecializedTypeWrapper(strict_check) { } + : SpecializedTypeWrapper(strict_check) { } /// @brief Convenience function returning an object indicating that strict /// checks should be performed. -- 2.47.2