From 857b74041aa339e56ee8b2a05a910172753ed783 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Wed, 15 Feb 2023 01:18:28 +0100 Subject: Drop 'using namespace ::std' in dirs [u-x]* Change-Id: I8c044369826b00241496cfc7ba2463e507c0d1a6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147077 Tested-by: Jenkins Reviewed-by: Gabor Kelemen --- xmloff/source/text/txtimp.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'xmloff/source/text/txtimp.cxx') diff --git a/xmloff/source/text/txtimp.cxx b/xmloff/source/text/txtimp.cxx index 87fd2b91283a..e9858e31a722 100644 --- a/xmloff/source/text/txtimp.cxx +++ b/xmloff/source/text/txtimp.cxx @@ -74,7 +74,6 @@ using ::com::sun::star::ucb::XAnyCompare; -using namespace ::std; using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; @@ -340,8 +339,8 @@ namespace class FieldParamImporter { public: - typedef pair field_param_t; - typedef vector field_params_t; + typedef std::pair field_param_t; + typedef std::vector field_params_t; FieldParamImporter(const field_params_t* const pInParams, Reference const & xOutParams) : m_pInParams(pInParams) , m_xOutParams(xOutParams) -- cgit