diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-30 17:21:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-02 16:49:27 +0200 |
commit | 8c045e633cb8ba3ce80617a927ba9f36240c4e06 (patch) | |
tree | c24bfd9bf3d9fa3311dc86df1c7e4cecada508d7 /tools | |
parent | da4a916fa4b1e96b7f0800fd30e10784f9986ca4 (diff) |
-Werror,-Wunused-function
Change-Id: I8167a8134b043fa1737d9a1ea67c9401de1a38da
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index 05f7ac3fbc7e..92745880ec0f 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -50,14 +50,10 @@ inline static void SwapUShort( sal_uInt16& r ) { r = OSL_SWAPWORD(r); } inline static void SwapShort( short& r ) { r = OSL_SWAPWORD(r); } -inline static void SwapLong( long& r ) - { r = OSL_SWAPDWORD(r); } inline static void SwapULong( sal_uInt32& r ) { r = OSL_SWAPDWORD(r); } inline static void SwapLongInt( sal_Int32& r ) { r = OSL_SWAPDWORD(r); } -inline static void SwapLongUInt( unsigned int& r ) - { r = OSL_SWAPDWORD(r); } inline static void SwapUInt64( sal_uInt64& r ) { |