mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-30 19:24:42 +01:00
General: Convert multiple namespace specifiers to nested namespace specifiers where applicable
Makes namespacing a little less noisy
This commit is contained in:
parent
7abd673a49
commit
67443efb62
130 changed files with 264 additions and 532 deletions
|
|
@ -8,8 +8,7 @@
|
|||
|
||||
#include "common/memory_pool.h"
|
||||
|
||||
namespace Dynarmic {
|
||||
namespace Common {
|
||||
namespace Dynarmic::Common {
|
||||
|
||||
Pool::Pool(size_t object_size, size_t initial_pool_size) : object_size(object_size), slab_size(initial_pool_size) {
|
||||
AllocateNewSlab();
|
||||
|
|
@ -42,6 +41,4 @@ void Pool::AllocateNewSlab() {
|
|||
remaining = slab_size;
|
||||
}
|
||||
|
||||
|
||||
} // namespace Common
|
||||
} // namespace Dynarmic
|
||||
} // namespace Dynarmic::Common
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue