Remove "using namespace std;".

This commit is contained in:
John Hood
2018-08-15 01:56:53 -04:00
parent fb23168ed9
commit 756f4f8e98
13 changed files with 16 additions and 24 deletions
+2 -3
View File
@@ -45,12 +45,11 @@
#include "locale_utils.h"
using namespace std;
const string LocaleVar::str( void ) const
const std::string LocaleVar::str( void ) const
{
if ( name.empty() ) {
return string( "[no charset variables]" );
return std::string( "[no charset variables]" );
}
return name + "=" + value;
}