diff options
author | Gabor Kelemen <gabor.kelemen.extern@allotropia.de> | 2023-02-14 23:34:19 +0100 |
---|---|---|
committer | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-02-16 08:14:21 +0000 |
commit | 79176694ddc7bce40ce2b82d3f332be8642a5167 (patch) | |
tree | 7a2760db137310e6316f4917e3c845dbe6d8a9b7 /sax/source/expatwrap | |
parent | a38f13e364f9416a1a6d1163eba431eb1c6d5908 (diff) |
Drop 'using namespace ::std' in dirs s*
Change-Id: If3119a1f2274aac0bf70576458e3adb4505a2a45
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147076
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen <kelemeng@ubuntu.com>
Diffstat (limited to 'sax/source/expatwrap')
-rw-r--r-- | sax/source/expatwrap/sax_expat.cxx | 3 | ||||
-rw-r--r-- | sax/source/expatwrap/saxwriter.cxx | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx index 146a8c4193db..d6d63fb654bd 100644 --- a/sax/source/expatwrap/sax_expat.cxx +++ b/sax/source/expatwrap/sax_expat.cxx @@ -45,7 +45,6 @@ #include <expat.h> -using namespace ::std; using namespace ::osl; using namespace ::cppu; using namespace ::com::sun::star::lang; @@ -160,7 +159,7 @@ public: // module scope rtl::Reference < comphelper::AttributeList > rAttrList; // External entity stack - vector<struct Entity> vecEntity; + std::vector<struct Entity> vecEntity; void pushEntity( Entity &&entity ) { vecEntity.push_back( std::move(entity) ); } void popEntity() diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx index e19a31211d98..708efc573983 100644 --- a/sax/source/expatwrap/saxwriter.cxx +++ b/sax/source/expatwrap/saxwriter.cxx @@ -41,7 +41,6 @@ #include <rtl/character.hxx> #include <sal/log.hxx> -using namespace ::std; using namespace ::osl; using namespace ::cppu; using namespace ::com::sun::star::uno; |