disable stringbuffer plugin
as pointed out by mike kaganski: the 'aCellStr + u"\x0001"' expression gives an OUStringConcat which holds the references to the strings and doesn't allocate any memory; the OUStringBuffer has a dedicated overload of append() for the OUStringConcat, which allocates only once for the combined concat length and then copies everything from the concat, instead of doing the append twice for each element... why the strange warning for a more efficient method? Change-Id: I6492e99c335e2375cfe78547a87b3079a86890f0 Reviewed-on: https://gerrit.libreoffice.org/79036 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
parent
573562e72a
commit
6e1cb2e9dd
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ bool StringBuffer::VisitCXXMemberCallExpr(CXXMemberCallExpr const* memberCallExp
|
|||
return true;
|
||||
}
|
||||
|
||||
loplugin::Plugin::Registration<StringBuffer> stringbuffer("stringbuffer");
|
||||
loplugin::Plugin::Registration<StringBuffer> stringbuffer("stringbuffer", false);
|
||||
|
||||
} // namespace
|
||||
|
||||
|
|
Loading…
Reference in a new issue