From 191e5fc227e40d18a1fe4563ed145517117596ea Mon Sep 17 00:00:00 2001 From: Emanuel Schorsch Date: Sun, 17 Oct 2021 18:31:30 -0700 Subject: Noop unify style for branches Change-Id: Ifa96b7f273f7c154fdd267efba7271765ff7ae45 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123728 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- sal/rtl/bootstrap.cxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'sal') diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index fc551c8ce933..9feadf874e54 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -919,11 +919,9 @@ OUString expandMacros( } else if (n == 2) { - buf.append( - lookup( - static_cast< Bootstrap_Impl * >( - rtl::Bootstrap(seg[0]).getHandle()), - mode, false, seg[1], requestStack)); + rtl::Bootstrap b(seg[0]); + Bootstrap_Impl * f = static_cast< Bootstrap_Impl * >(b.getHandle()); + buf.append(lookup(f, mode, false, seg[1], requestStack)); } else if (n == 3 && seg[0] == ".override") { -- cgit