Files
termux-packages/packages/wiz/deprecated-literal-operator.patch
termux-pacman-bot bff3119ed6 bump(main/wiz): 2025.04.10
- Progress on https://github.com/termux/termux-packages/issues/23492

- Progress on https://github.com/termux/termux-packages/issues/11744

- Fix build with NDK r29 using `deprecated-literal-operator.patch` and `unused-variable.patch`

- Convert all source code to LF before building for easier maintenance of patches using UNIX-like development systems
2026-01-03 08:06:43 +00:00

15 lines
441 B
Diff

Fixes:
error: identifier '_sv' preceded by whitespace in a literal operator declaration is deprecated
--- a/src/wiz/utility/string_view.h
+++ b/src/wiz/utility/string_view.h
@@ -209,7 +209,7 @@ namespace wiz {
};
}
-constexpr wiz::StringView operator "" _sv(const char* text, std::size_t length) {
+constexpr wiz::StringView operator ""_sv(const char* text, std::size_t length) {
return wiz::StringView(text, length);
}