diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-10-03 14:09:18 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-10-03 19:27:23 +0200 |
commit | db12f7a63cb663493f364535e12b670bd13fbea0 (patch) | |
tree | a6211c0a39451bf7062ee5871110f929b6a0fb14 /cppu/source | |
parent | 868e82d70be0921c8338ccfc49c90343f82a2dd1 (diff) |
drop 'using namespace std' in cppu
Change-Id: I1c9e6d27e47e25bc5c96ceac8d72c7c112c73d61
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123019
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'cppu/source')
-rw-r--r-- | cppu/source/typelib/typelib.cxx | 7 | ||||
-rw-r--r-- | cppu/source/uno/lbmap.cxx | 5 |
2 files changed, 5 insertions, 7 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx index fa2a73d767ac..eadc2c3bdde9 100644 --- a/cppu/source/typelib/typelib.cxx +++ b/cppu/source/typelib/typelib.cxx @@ -39,7 +39,6 @@ #include <uno/any2.h> #include "typelib.hxx" -using namespace std; using namespace osl; #ifdef _WIN32 @@ -158,9 +157,9 @@ struct hashStr_Impl typedef std::unordered_map< const sal_Unicode *, typelib_TypeDescriptionReference *, hashStr_Impl, equalStr_Impl > WeakMap_Impl; -typedef pair< void *, typelib_typedescription_Callback > CallbackEntry; -typedef list< CallbackEntry > CallbackSet_Impl; -typedef list< typelib_TypeDescription * > TypeDescriptionList_Impl; +typedef std::pair< void *, typelib_typedescription_Callback > CallbackEntry; +typedef std::list< CallbackEntry > CallbackSet_Impl; +typedef std::list< typelib_TypeDescription * > TypeDescriptionList_Impl; // # of cached elements static sal_Int32 nCacheSize = 256; diff --git a/cppu/source/uno/lbmap.cxx b/cppu/source/uno/lbmap.cxx index a88259627b2c..585082ac1d06 100644 --- a/cppu/source/uno/lbmap.cxx +++ b/cppu/source/uno/lbmap.cxx @@ -47,7 +47,6 @@ #include "cascade_mapping.hxx" #include "loadmodule.hxx" -using namespace std; using namespace osl; using namespace com::sun::star::uno; @@ -156,11 +155,11 @@ struct MappingsData t_Mapping2Entry aMapping2Entry; Mutex aCallbacksMutex; - set< uno_getMappingFunc > + std::set< uno_getMappingFunc > aCallbacks; std::mutex aNegativeLibsMutex; - set<OUString> aNegativeLibs; + std::set<OUString> aNegativeLibs; }; } |