1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

memory: add missing typedef

This commit is contained in:
Steffen Vogel 2022-10-28 11:34:58 -04:00
parent af6e760bcb
commit ccbab2e3e4

View file

@ -27,6 +27,7 @@ public:
using deallocator_fn = std::function<void(MemoryBlock*)>;
using Ptr = std::shared_ptr<MemoryBlock>;
using UniquePtr = std::unique_ptr<MemoryBlock, deallocator_fn>;
// cppcheck-suppress passedByValue
MemoryBlock(size_t offset, size_t size, MemoryManager::AddressSpaceId addrSpaceId) :