device/lms: get rid of 'using namespace std'

Change-Id: I4329801c502db73efa946f15c103b2c081cee5a7
This commit is contained in:
Vadim Yanitskiy 2020-10-24 07:05:22 +07:00
parent d1ca287d83
commit 6b4acc12f7
1 changed files with 1 additions and 3 deletions

View File

@ -40,8 +40,6 @@ extern "C" {
#include "config.h"
#endif
using namespace std;
#define MAX_ANTENNA_LIST_SIZE 10
#define GSM_CARRIER_BW 270000.0 /* 270kHz */
#define LMS_MIN_BW_SUPPORTED 2.5e6 /* 2.5mHz, minimum supported by LMS */
@ -203,7 +201,7 @@ static void print_range(const char* name, lms_range_t *range)
int info_list_find(lms_info_str_t* info_list, unsigned int count, const std::string &args)
{
unsigned int i, j;
std::vector<string> filters;
std::vector<std::string> filters;
filters = comma_delimited_to_vector(args.c_str());