From 4b1fb58cb8be65a6a71c79448c8d5a1629dc6c8c Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 9 Nov 2021 21:49:49 +0100 Subject: [PATCH] hex2bin() - fixed contradicting signatures --- src/std_utils.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/std_utils.hh b/src/std_utils.hh index 7275c93..ff226b1 100644 --- a/src/std_utils.hh +++ b/src/std_utils.hh @@ -105,7 +105,7 @@ namespace pEp { template std::string bin2hex(const T &bin); template - T hex2bin(const std::string &hex_str); + std::vector hex2bin(const std::string &hex_str); } // namespace Utils } // namespace pEp