mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-24 05:45:30 +02:00
General: Convert multiple namespace specifiers to nested namespace specifiers where applicable
Makes namespacing a little less noisy
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user