diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-01-30 14:42:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-01-30 17:44:03 +0100 |
commit | 8f31bb9d3facfc34f42b89ef7b1e076ef158928e (patch) | |
tree | cc252f1b0089cc39ab0e3fb37a3a56af7d55d51d /dtrans | |
parent | 2b012f9d52dd0d52c7e1f3f1521ae3f7c7e65113 (diff) |
loplugin:redundantfcast (clang-cl)
Change-Id: I814e7b61ebbef1a0bbd38a5e70beeb7f99a0cfa1
Reviewed-on: https://gerrit.libreoffice.org/67146
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/dtobj/FetcList.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/win32/dtobj/FetcList.cxx b/dtrans/source/win32/dtobj/FetcList.cxx index 36bb5bd74eee..0a262b0677fb 100644 --- a/dtrans/source/win32/dtobj/FetcList.cxx +++ b/dtrans/source/win32/dtobj/FetcList.cxx @@ -48,7 +48,7 @@ CFormatEtcContainer::CFormatEtcContainer( ) void CFormatEtcContainer::addFormatEtc( const CFormatEtc& fetc ) { - m_FormatMap.push_back( CFormatEtc( fetc ) ); + m_FormatMap.push_back( fetc ); } void CFormatEtcContainer::removeFormatEtc( const CFormatEtc& fetc ) |