diff options
Diffstat (limited to 'src/universe.h')
-rw-r--r-- | src/universe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/universe.h b/src/universe.h index 2edd825..d890e5c 100644 --- a/src/universe.h +++ b/src/universe.h | |||
@@ -17,7 +17,7 @@ class Lane; | |||
17 | 17 | ||
18 | // mutex-protected allocator for use with Lua states that share a non-threadsafe allocator | 18 | // mutex-protected allocator for use with Lua states that share a non-threadsafe allocator |
19 | class ProtectedAllocator | 19 | class ProtectedAllocator |
20 | : public AllocatorDefinition | 20 | : public lanes::AllocatorDefinition |
21 | { | 21 | { |
22 | private: | 22 | private: |
23 | std::mutex mutex; | 23 | std::mutex mutex; |
@@ -90,7 +90,7 @@ class Universe | |||
90 | // contains a mutex and the original allocator definition | 90 | // contains a mutex and the original allocator definition |
91 | ProtectedAllocator protectedAllocator; | 91 | ProtectedAllocator protectedAllocator; |
92 | 92 | ||
93 | AllocatorDefinition internalAllocator; | 93 | lanes::AllocatorDefinition internalAllocator; |
94 | 94 | ||
95 | Keepers keepers; | 95 | Keepers keepers; |
96 | 96 | ||