Remove unused and undefined overloads of `isBase64` (#1865)

This commit is contained in:
Muhammad 2023-11-27 12:08:01 +03:00 committed by GitHub
parent 6f6a03b14b
commit 830ced8c5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -95,12 +95,8 @@ struct CanConvertFromString
namespace utils
{
/// Determine if the string is an integer
DROGON_EXPORT bool isInteger(const std::string &str);
/// Determine if the string is an integer
DROGON_EXPORT bool isInteger(std::string_view str);
/// Determine if the string is base64 encoded
DROGON_EXPORT bool isBase64(const std::string &str);
/// Determine if the string is base64 encoded
DROGON_EXPORT bool isBase64(std::string_view str);