Remove other using statements from headers

This commit is contained in:
Tim Wojtulewicz 2020-04-07 13:14:17 -07:00
parent eb010290eb
commit a525f9532e
22 changed files with 123 additions and 171 deletions

View file

@ -2,14 +2,13 @@
#pragma once
#include "threading/SerialTypes.h"
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
#include <string>
using std::string;
#include "threading/SerialTypes.h"
struct ConnID;
class BroString;
class HashKey;
@ -317,7 +316,7 @@ public:
if ( GetFamily() == IPv4 )
return AsString();
return string("[") + AsString() + "]";
return std::string("[") + AsString() + "]";
}
/**