From ac37ca040be8f5beaad4e94a613534fa643c04c9 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.) (cherry picked from commit 35411e5ed99584c7061a5feede8cb9b8d71c9b68) --- 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 66ea0e53b76..509a63b6fe9 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(advstd::data(c), advstd::size(c), littleEndian); } + auto SetBinary(Container const& c, bool littleEndian = true) -> std::enable_if_t>> { SetBinary(advstd::data(c), advstd::size(c), littleEndian); } bool SetHexStr(char const* str); bool SetHexStr(std::string const& str) { return SetHexStr(str.c_str()); } -- cgit v1.2.3