helpcompiler/source/HelpLinker.cxx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-)
New commits: commit 7b11cda2aa1f9bd069d81c30021448674a97ce30 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Fri Oct 22 18:17:59 2021 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Fri Oct 22 19:30:32 2021 +0200 Revert "Simplify vector initialization in helpcompiler" since it needs 2 allocations instead of one This reverts commit cd5ee8c7d3f06fe78e6b3993845a3c2abc7cb72a. Change-Id: I4958cacf747291c923b74fdfa49679e831d0ef1b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124070 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/helpcompiler/source/HelpLinker.cxx b/helpcompiler/source/HelpLinker.cxx index 0aedf9b42692..f7acc30ecc7d 100644 --- a/helpcompiler/source/HelpLinker.cxx +++ b/helpcompiler/source/HelpLinker.cxx @@ -856,13 +856,11 @@ bool compileExtensionHelp { bool bSuccess = true; - OString aOExtensionName = OUStringToOString( aExtensionName, osl_getThreadTextEncoding() ); - std::vector<std::string> args - { - std::string("-mod"), - std::string(aOExtensionName.getStr()) - }; + std::vector<std::string> args; args.reserve(nXhpFileCount + 2); + args.push_back(std::string("-mod")); + OString aOExtensionName = OUStringToOString( aExtensionName, osl_getThreadTextEncoding() ); + args.push_back(std::string(aOExtensionName.getStr())); for( sal_Int32 iXhp = 0 ; iXhp < nXhpFileCount ; ++iXhp ) {