From a45ffb79935ccfd3f04d72cb088ce72fbc7fe6ed Mon Sep 17 00:00:00 2001 From: George Christou Date: Mon, 23 Mar 2020 00:06:04 +0000 Subject: [PATCH] string/trim: Add VT to list of default chars --- src/builtin_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin_string.cpp b/src/builtin_string.cpp index 8476b307c..a570c81be 100644 --- a/src/builtin_string.cpp +++ b/src/builtin_string.cpp @@ -177,7 +177,7 @@ typedef struct { //!OCLINT(too many fields) long start = 0; long end = 0; - const wchar_t *chars_to_trim = L" \f\n\r\t"; + const wchar_t *chars_to_trim = L" \f\n\r\t\v"; const wchar_t *arg1 = nullptr; const wchar_t *arg2 = nullptr;