cli_ure/source/climaker/climaker_app.cxx | 9 ++++----- connectivity/source/drivers/ado/AStatement.cxx | 1 - 2 files changed, 4 insertions(+), 6 deletions(-)
New commits: commit ed989d6b79ae2d6dbd9d4b17567497d228259a58 Author: Gabor Kelemen <[email protected]> AuthorDate: Mon Feb 27 10:23:14 2023 +0100 Commit: Thorsten Behrens <[email protected]> CommitDate: Tue Feb 28 11:17:57 2023 +0000 Drop 'using namespace ::std' in Windows-specific files Change-Id: Id66d42f2139fbcac0fed56fe534107f65d198f02 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147877 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <[email protected]> diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx index 7b9bc001ae1b..9c596cd97017 100644 --- a/cli_ure/source/climaker/climaker_app.cxx +++ b/cli_ure/source/climaker/climaker_app.cxx @@ -39,7 +39,6 @@ #include "com/sun/star/uno/XComponentContext.hpp" #include "unoidl/unoidl.hxx" -using namespace ::std; using namespace ::System::Reflection; @@ -285,10 +284,10 @@ SAL_IMPLEMENT_MAIN() get_option_info( "assembly-trademark" ); OUString output; - vector< OUString > mandatory_registries; - vector< OUString > extra_registries; - vector< OUString > extra_assemblies; - vector< OUString > explicit_types; + std::vector< OUString > mandatory_registries; + std::vector< OUString > extra_registries; + std::vector< OUString > extra_assemblies; + std::vector< OUString > explicit_types; OUString version, product, description, company, copyright, trademark, keyfile, delaySign; diff --git a/connectivity/source/drivers/ado/AStatement.cxx b/connectivity/source/drivers/ado/AStatement.cxx index 1c48734d84fb..c2a09385dee6 100644 --- a/connectivity/source/drivers/ado/AStatement.cxx +++ b/connectivity/source/drivers/ado/AStatement.cxx @@ -51,7 +51,6 @@ using namespace com::sun::star::uno; using namespace com::sun::star::lang; using namespace com::sun::star::beans; using namespace com::sun::star::sdbc; -using namespace ::std; OStatement_Base::OStatement_Base(OConnection* _pConnection ) : OStatement_BASE(m_aMutex) ,OPropertySetHelper(OStatement_BASE::rBHelper)
