From 4c05834a363535804d2cf5892704e19a5bb4f966 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 16 May 2017 14:05:56 +0200 Subject: loplugin:unusedmethods Change-Id: I1c50d176e793397a1f9625f797a3750cf191a61c Reviewed-on: https://gerrit.libreoffice.org/37679 Tested-by: Jenkins Reviewed-by: Noel Grandin --- tools/source/rc/resmgr.cxx | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'tools') diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx index 422c7882d9a1..09c1fbe2a954 100644 --- a/tools/source/rc/resmgr.cxx +++ b/tools/source/rc/resmgr.cxx @@ -1067,18 +1067,6 @@ sal_Int32 ResMgr::GetLong( void const * pLong ) (*(static_cast(pLong) + 3) << 0) ); } -sal_uInt64 ResMgr::GetUInt64( void const * pDatum ) -{ - return ((sal_uInt64(*(static_cast(pDatum) + 0)) << 56) | - (sal_uInt64(*(static_cast(pDatum) + 1)) << 48) | - (sal_uInt64(*(static_cast(pDatum) + 2)) << 40) | - (sal_uInt64(*(static_cast(pDatum) + 3)) << 32) | - (sal_uInt64(*(static_cast(pDatum) + 4)) << 24) | - (sal_uInt64(*(static_cast(pDatum) + 5)) << 16) | - (sal_uInt64(*(static_cast(pDatum) + 6)) << 8) | - (sal_uInt64(*(static_cast(pDatum) + 7)) << 0) ); -} - sal_uInt32 ResMgr::GetStringWithoutHook( OUString& rStr, const sal_uInt8* pStr ) { sal_uInt32 nLen=0; -- cgit