summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-04 10:01:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-04 12:06:18 +0000
commit071dcb5f6aaf7179619a251933dec8bbdc6f3cd8 (patch)
tree920b7feebb188fa679344585a76823f79502f197 /bridges
parent9a4b0beaa500320316cbb9147a3300fa2258e217 (diff)
loplugin:redundantinline (clang-cl)
Change-Id: I03a19b599005f6ef25040889a1e1802445ebf430 Reviewed-on: https://gerrit.libreoffice.org/36063 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
index 8860344c97c3..6dafb7396fd4 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
@@ -330,7 +330,7 @@ class type_info_
public:
virtual ~type_info_() throw ();
- inline type_info_( void * m_data, const char * m_d_name ) throw ()
+ type_info_( void * m_data, const char * m_d_name ) throw ()
: _m_data( m_data )
{ ::strcpy( _m_d_name, m_d_name ); } // #100211# - checked
@@ -352,7 +352,7 @@ private:
public:
- inline type_info_descriptor(void * m_data, const char * m_d_name) throw ()
+ type_info_descriptor(void * m_data, const char * m_d_name) throw ()
: info(m_data, m_d_name)
{
type_info_size = sizeof(type_info_) + strlen(m_d_name);
@@ -497,7 +497,7 @@ struct ExceptionType
type_info_ type_info;
- inline ExceptionType(
+ ExceptionType(
unsigned char * pCode,
sal_uInt64 pCodeBase,
typelib_TypeDescription * pTD ) throw ()