diff options
author | boludoz <francomaro@gmail.com> | 2023-10-15 21:40:10 -0300 |
---|---|---|
committer | boludoz <francomaro@gmail.com> | 2023-10-15 21:40:10 -0300 |
commit | 74961d4dfb394c098da494f6beacdd994c089566 (patch) | |
tree | 40cfe9748d427047b758f4e4fe37036010c29026 /src/common/fs/fs_util.h | |
parent | 9ffa1801c75073afb851351ecdd1a8b40e33cc5c (diff) |
Less code, simpler, better.
Diffstat (limited to 'src/common/fs/fs_util.h')
-rw-r--r-- | src/common/fs/fs_util.h | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/src/common/fs/fs_util.h b/src/common/fs/fs_util.h index daec1f8cb..2492a9f94 100644 --- a/src/common/fs/fs_util.h +++ b/src/common/fs/fs_util.h @@ -82,24 +82,4 @@ concept IsChar = std::same_as<T, char>; */ [[nodiscard]] std::string PathToUTF8String(const std::filesystem::path& path); -/** - * Fix filename (remove invalid characters) - * - * @param u8_string dirty encoded filename string - * - * @returns utf8_string sanitized filename string - * - */ -[[nodiscard]] std::u8string U8FilenameSanitizer(const std::u8string_view u8filename); - -/** - * Fix filename (remove invalid characters) - * - * @param utf8_string dirty encoded filename string - * - * @returns utf8_string sanitized filename string - * - */ -[[nodiscard]] std::string UTF8FilenameSanitizer(const std::string_view filename); - -} // namespace Common::FS
\ No newline at end of file +} // namespace Common::FS |