diff options
Diffstat (limited to 'sax/source')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 1 | ||||
-rw-r--r-- | sax/source/fastparser/legacyfastparser.cxx | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index 86bd8a734b63..97435e2219ea 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -54,7 +54,6 @@ // Inverse of libxml's BAD_CAST. #define XML_CAST( str ) reinterpret_cast< const char* >( str ) -using namespace std; using namespace ::osl; using namespace ::cppu; using namespace ::com::sun::star::uno; diff --git a/sax/source/fastparser/legacyfastparser.cxx b/sax/source/fastparser/legacyfastparser.cxx index c748eb057fbe..d32b12d8a5f9 100644 --- a/sax/source/fastparser/legacyfastparser.cxx +++ b/sax/source/fastparser/legacyfastparser.cxx @@ -29,7 +29,6 @@ #include <memory> #include <vector> -using namespace std; using namespace ::cppu; using namespace css; using namespace uno; @@ -49,7 +48,7 @@ private: NamespaceDefine( const OUString& rPrefix, const OUString& rNamespaceURI ) : m_aPrefix( rPrefix ), m_aNamespaceURI( rNamespaceURI ) {} }; - vector< unique_ptr< NamespaceDefine > > m_aNamespaceDefines; + std::vector< std::unique_ptr< NamespaceDefine > > m_aNamespaceDefines; public: NamespaceHandler(); |