From 70153b7350fbd0c12a63e879a93a443672061044 Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Mon, 11 Dec 2023 17:47:43 +0300 Subject: Make some SvGlobalName ctors constexpr Change-Id: Idacca005723b995061dc1df06f98bd584cbfd675 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160606 Tested-by: Jenkins Reviewed-by: Mike Kaganski --- tools/source/ref/globname.cxx | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'tools') diff --git a/tools/source/ref/globname.cxx b/tools/source/ref/globname.cxx index df8ff10943ea..e5cee830df22 100644 --- a/tools/source/ref/globname.cxx +++ b/tools/source/ref/globname.cxx @@ -27,17 +27,6 @@ #include // SvGlobalName ---------------------------------------------------------------- -SvGlobalName::SvGlobalName( const SvGUID & rId ) : - m_aData( rId ) -{ -} - -SvGlobalName::SvGlobalName( sal_uInt32 n1, sal_uInt16 n2, sal_uInt16 n3, - sal_uInt8 b8, sal_uInt8 b9, sal_uInt8 b10, sal_uInt8 b11, - sal_uInt8 b12, sal_uInt8 b13, sal_uInt8 b14, sal_uInt8 b15 ) : - m_aData{ n1, n2, n3, { b8, b9, b10, b11, b12, b13, b14, b15 } } -{ -} SvGlobalName::SvGlobalName( const css::uno::Sequence < sal_Int8 >& aSeq ) { -- cgit