From 35411e5ed99584c7061a5feede8cb9b8d71c9b68 Mon Sep 17 00:00:00 2001 From: Treeston Date: Sun, 26 Jul 2020 05:33:47 +0200 Subject: how does VC++ never catch these? 5e36bf7 follow-up (No more witty one-liners. Let me go to bed please.) --- src/common/Cryptography/BigNumber.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/common/Cryptography/BigNumber.h b/src/common/Cryptography/BigNumber.h index 1152b468ac8..f269a813075 100644 --- a/src/common/Cryptography/BigNumber.h +++ b/src/common/Cryptography/BigNumber.h @@ -42,7 +42,7 @@ class TC_COMMON_API BigNumber void SetQword(uint64); void SetBinary(uint8 const* bytes, int32 len, bool littleEndian = true); template - auto SetBinary(Container const& c, bool littleEndian = true) -> std::enable_if_t> { SetBinary(std::data(c), std::size(c), littleEndian); } + auto SetBinary(Container const& c, bool littleEndian = true) -> std::enable_if_t>> { SetBinary(std::data(c), std::size(c), littleEndian); } bool SetHexStr(char const* str); bool SetHexStr(std::string const& str) { return SetHexStr(str.c_str()); } -- cgit v1.2.3