General: Convert multiple namespace specifiers to nested namespace specifiers where applicable

Makes namespacing a little less noisy
This commit is contained in:
Lioncash 2018-01-26 08:51:48 -05:00 committed by MerryMage
parent 7abd673a49
commit 67443efb62
130 changed files with 264 additions and 532 deletions

View file

@ -6,13 +6,11 @@
#pragma once
namespace Dynarmic {
namespace Common {
namespace Dynarmic::Common {
template <typename T>
constexpr char SignToChar(T value) {
return value >= 0 ? '+' : '-';
}
} // namespace Common
} // namespace Dynarmic
} // namespace Dynarmic::Common