mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
GH-776: Remove using statements added by PR 770
This commit is contained in:
parent
08fbdb1418
commit
eb010290eb
4 changed files with 11 additions and 22 deletions
|
@ -13,8 +13,6 @@
|
|||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
using std::map;
|
||||
|
||||
// TODO: Anon.h may not be the right place to put these functions ...
|
||||
|
||||
enum ip_addr_anonymization_class_t {
|
||||
|
@ -51,7 +49,7 @@ public:
|
|||
bool PreserveNet(ipaddr32_t input);
|
||||
|
||||
protected:
|
||||
map<ipaddr32_t, ipaddr32_t> mapping;
|
||||
std::map<ipaddr32_t, ipaddr32_t> mapping;
|
||||
};
|
||||
|
||||
class AnonymizeIPAddr_Seq : public AnonymizeIPAddr {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue