diff options
-rw-r--r-- | apt-pkg/contrib/hashsum_template.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apt-pkg/contrib/hashsum_template.h b/apt-pkg/contrib/hashsum_template.h index 42248f6ac..4000f230d 100644 --- a/apt-pkg/contrib/hashsum_template.h +++ b/apt-pkg/contrib/hashsum_template.h @@ -79,18 +79,15 @@ class HashSumValue return Value(); } - bool Set(std::string Str) - { - return Hex2Num(Str,Sum,sizeof(Sum)); - } #ifdef APT_PKG_EXPOSE_STRING_VIEW APT_HIDDEN bool Set(APT::StringView Str) { return Hex2Num(Str,Sum,sizeof(Sum)); } - APT_HIDDEN bool Set(const char *Str) +#else + bool Set(std::string Str) { - return Hex2Num(APT::StringView(Str),Sum,sizeof(Sum)); + return Hex2Num(Str,Sum,sizeof(Sum)); } #endif inline void Set(unsigned char S[N/8]) |