diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-08-12 00:30:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-17 07:43:01 +0200 |
commit | 7315f325ff7ada3d6bd85a471058fdaeaff8cdb0 (patch) | |
tree | ef1505a58c8684a5430999e4f53a8a7d6b9f19ae /extensions | |
parent | 83288332f7ced698610739419989c464256f1c4d (diff) |
use more default copy ctors
if ctor should be private or protected explicitly default them.
boost::optional has copy ctors, so use them.
Change-Id: If1855626b297e739afef0dc5ad57958f7ad199bc
Reviewed-on: https://gerrit.libreoffice.org/42363
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/abpilot/datasourcehandling.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/extensions/source/abpilot/datasourcehandling.cxx b/extensions/source/abpilot/datasourcehandling.cxx index bb3eae445187..5acd30aa226e 100644 --- a/extensions/source/abpilot/datasourcehandling.cxx +++ b/extensions/source/abpilot/datasourcehandling.cxx @@ -304,20 +304,9 @@ namespace abp : xORB(_rxORB) { } - - ODataSourceImpl( const ODataSourceImpl& _rSource ); }; - ODataSourceImpl::ODataSourceImpl( const ODataSourceImpl& _rSource ) - :xORB( _rSource.xORB ) - ,xDataSource( _rSource.xDataSource ) - ,xConnection( _rSource.xConnection ) - ,aTables( _rSource.aTables ) - ,sName( _rSource.sName ) - { - } - ODataSource::ODataSource( const ODataSource& _rSource ) :m_pImpl( nullptr ) { |