From: Marcin Siodelski Date: Thu, 7 Jul 2016 07:57:18 +0000 (+0200) Subject: [master] Added template param in invocation of SpecializedTypeWrapper. X-Git-Tag: trac4551_base~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7391c0a059f68206a854f3d4b2d6854f7dc38513;p=thirdparty%2Fkea.git [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. --- 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.