Namespacing cleanup (it's bad to do "using namespace" in a header)

This commit is contained in:
Henrik Rydgard
2014-12-07 14:44:15 +01:00
parent 4457dca4c9
commit 51d55bd645
26 changed files with 135 additions and 120 deletions

View File

@@ -68,6 +68,11 @@ op_agent_t agent;
#pragma comment(lib, "jitprofiling.lib")
#endif
#ifdef ARM
using namespace ArmGen;
#elif defined(_M_X64) || defined(_M_IX86)
using namespace Gen;
#endif
const u32 INVALID_EXIT = 0xFFFFFFFF;
const MIPSOpcode INVALID_ORIGINAL_OP = MIPSOpcode(0x00000001);