mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-12 04:41:03 +00:00
- 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
15 lines
441 B
Diff
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);
|
|
}
|
|
|