GH-776: Remove using statements added by PR 770

This commit is contained in:
Tim Wojtulewicz 2020-04-07 13:08:20 -07:00
parent 08fbdb1418
commit eb010290eb
4 changed files with 11 additions and 22 deletions

View file

@ -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 {