diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2023-12-11 17:47:43 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2023-12-12 08:54:59 +0100 |
commit | 70153b7350fbd0c12a63e879a93a443672061044 (patch) | |
tree | 985c1bf3ea9de31bcd5db782d0bd831e37e865ce /tools | |
parent | c4ba535eccf1e264d7c9feea48156a2b48000dd6 (diff) |
Make some SvGlobalName ctors constexpr
Change-Id: Idacca005723b995061dc1df06f98bd584cbfd675
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160606
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/ref/globname.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
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 <tools/globname.hxx> // 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 ) { |