Merge pull request #12096 from Dentomologist/nandpaths_resolve_android_warning

NandPaths: Resolve Android tautological comparison warning
This commit is contained in:
Admiral H. Curtiss 2023-08-15 22:23:57 +02:00 committed by GitHub
commit a44606692a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,6 @@
#include <algorithm>
#include <string>
#include <unordered_set>
#include <vector>
#include <fmt/format.h>
@ -105,9 +104,9 @@ bool IsTitlePath(const std::string& path, std::optional<FromWhichRoot> from, u64
static bool IsIllegalCharacter(char c)
{
static const std::unordered_set<char> illegal_chars = {'\"', '*', '/', ':', '<',
'>', '?', '\\', '|', '\x7f'};
return (c >= 0 && c <= 0x1F) || illegal_chars.find(c) != illegal_chars.end();
static constexpr auto illegal_chars = {'\"', '*', '/', ':', '<', '>', '?', '\\', '|', '\x7f'};
return static_cast<unsigned char>(c) <= 0x1F ||
std::find(illegal_chars.begin(), illegal_chars.end(), c) != illegal_chars.end();
}
std::string EscapeFileName(const std::string& filename)