Kaydet (Commit) d0264b07 authored tarafından Miklos Vajna's avatar Miklos Vajna

svl: fixup Android build fix

Change-Id: I9f4b09ba48cd14e3cdd9cbd126d81f4b40bdb04b
üst db386006
...@@ -72,6 +72,7 @@ using namespace com::sun::star; ...@@ -72,6 +72,7 @@ using namespace com::sun::star;
namespace { namespace {
#if HAVE_FEATURE_NSS
void appendHex( sal_Int8 nInt, OStringBuffer& rBuffer ) void appendHex( sal_Int8 nInt, OStringBuffer& rBuffer )
{ {
static const sal_Char pHexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', static const sal_Char pHexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7',
...@@ -79,6 +80,7 @@ void appendHex( sal_Int8 nInt, OStringBuffer& rBuffer ) ...@@ -79,6 +80,7 @@ void appendHex( sal_Int8 nInt, OStringBuffer& rBuffer )
rBuffer.append( pHexDigits[ (nInt >> 4) & 15 ] ); rBuffer.append( pHexDigits[ (nInt >> 4) & 15 ] );
rBuffer.append( pHexDigits[ nInt & 15 ] ); rBuffer.append( pHexDigits[ nInt & 15 ] );
} }
#endif // HAVE_FEATURE_NSS
#if HAVE_FEATURE_NSS && !defined(_WIN32) #if HAVE_FEATURE_NSS && !defined(_WIN32)
...@@ -2282,10 +2284,9 @@ bool Signing::Verify(SvStream& rStream, ...@@ -2282,10 +2284,9 @@ bool Signing::Verify(SvStream& rStream,
// Not implemented. // Not implemented.
(void)rStream; (void)rStream;
(void)aByteRanges; (void)aByteRanges;
(void)bNonDetected; (void)bNonDetached;
(void)aSignature; (void)aSignature;
(void)rInformation; (void)rInformation;
static_assert(false, "WHAT!!!");
return false; return false;
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment