mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-07 02:42:58 +00:00
General: Convert multiple namespace specifiers to nested namespace specifiers where applicable
Makes namespacing a little less noisy
This commit is contained in:
@@ -10,8 +10,7 @@
|
||||
|
||||
#include "frontend/ir/opcodes.h"
|
||||
|
||||
namespace Dynarmic {
|
||||
namespace IR {
|
||||
namespace Dynarmic::IR {
|
||||
|
||||
// Opcode information
|
||||
|
||||
@@ -64,5 +63,4 @@ bool AreTypesCompatible(Type t1, Type t2) {
|
||||
return t1 == t2 || t1 == Type::Opaque || t2 == Type::Opaque;
|
||||
}
|
||||
|
||||
} // namespace IR
|
||||
} // namespace Dynarmic
|
||||
} // namespace Dynarmic::IR
|
||||
|
||||
Reference in New Issue
Block a user