diff options
author | Gabor Kelemen <gabor.kelemen.extern@allotropia.de> | 2023-02-27 10:23:14 +0100 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2023-02-28 11:17:57 +0000 |
commit | ed989d6b79ae2d6dbd9d4b17567497d228259a58 (patch) | |
tree | 8f6969a71bfd92c60bbfd4dd6221d53ecb1edfaf /cli_ure | |
parent | f4d147ef956de834a7402bea88a1aec296c38ef7 (diff) |
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 <thorsten.behrens@allotropia.de>
Diffstat (limited to 'cli_ure')
-rw-r--r-- | cli_ure/source/climaker/climaker_app.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
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; |