diff options
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/dataaccess/connection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/dataaccess/connection.cxx b/dbaccess/source/core/dataaccess/connection.cxx index 070af92f3082..417144dd2776 100644 --- a/dbaccess/source/core/dataaccess/connection.cxx +++ b/dbaccess/source/core/dataaccess/connection.cxx @@ -391,7 +391,7 @@ namespace void lcl_copyTypes( TypeBag& _out_rTypes, const Sequence< Type >& _rTypes ) { - ::std::copy( _rTypes.getConstArray(), _rTypes.getConstArray() + _rTypes.getLength(), + ::std::copy( _rTypes.begin(), _rTypes.end(), ::std::insert_iterator< TypeBag >( _out_rTypes, _out_rTypes.begin() ) ); } } |