mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-03 09:26:36 +00:00
Remove 'using namespaces std' fixes #61
This commit is contained in:
+2
-3
@@ -24,7 +24,6 @@
|
||||
#include "emu_opcodes.h"
|
||||
|
||||
#include <map>
|
||||
using namespace std;
|
||||
|
||||
//enable the use of shared mem opcodes for world and zone only
|
||||
#ifdef ZONE
|
||||
@@ -156,8 +155,8 @@ public:
|
||||
//fake it, just used for testing anyways
|
||||
virtual void SetOpcode(EmuOpcode emu_op, uint16 eq_op);
|
||||
protected:
|
||||
map<EmuOpcode, uint16> emu_to_eq;
|
||||
map<uint16, EmuOpcode> eq_to_emu;
|
||||
std::map<EmuOpcode, uint16> emu_to_eq;
|
||||
std::map<uint16, EmuOpcode> eq_to_emu;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user