From af4899c9df6e925b1cb099c29bd78788b2984cca Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Fri, 8 Jan 2016 21:19:32 +0100 Subject: HashSumValue::Set: Do not provide const char* overload Hide the std::string overload instead of providing a const char * one, the old variant was stupid. Gbp-Dch: ignore --- apt-pkg/contrib/hashsum_template.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'apt-pkg') 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]) -- cgit v1.2.3