From 2f5f45921b05904a4be1ff633be09c62cb44ff08 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Fri, 13 Sep 2019 15:13:55 +0200 Subject: support O(U)String::number() for fast string concatenation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When I did the fast string concatenation, I didn't add any support for number(), which simply returned a O(U)String, and so it did the extra allocation/deallocation, although that could be avoided. In order to support this, number() now returns a special temporary return type, similarly to O(U)StringConcat, which allows delaying the concatenation the same way. Also similarly, the change of the return type in some cases requires explicit cast to the actual string type. Usage of OString::getStr() is so extensive in the codebase that I actually added it to the helper class, after that it's only relatively few cases. Change-Id: Iba6e158010e1e458089698c426803052b6f46031 Reviewed-on: https://gerrit.libreoffice.org/78873 Tested-by: Jenkins Reviewed-by: Luboš Luňák --- unoidl/source/sourceprovider-scanner.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unoidl/source') diff --git a/unoidl/source/sourceprovider-scanner.l b/unoidl/source/sourceprovider-scanner.l index 29d594caf8e5..d0dd5a0dc155 100644 --- a/unoidl/source/sourceprovider-scanner.l +++ b/unoidl/source/sourceprovider-scanner.l @@ -245,7 +245,7 @@ ALNUM {DIGIT}|{ALPHA} yyextra->errorMessage = c >= ' ' && c <= '~' ? OUString("invalid character \"" + OUStringLiteral1(c) + "\"") : OUString( - "invalid byte x" + OUString::number(c, 16).toAsciiUpperCase()); + "invalid byte x" + OUString(OUString::number(c, 16)).toAsciiUpperCase()); return TOK_ERROR; } -- cgit