From ccbab2e3e46791fcea4173d33877e5f27709d65c Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 28 Oct 2022 11:34:58 -0400 Subject: [PATCH] memory: add missing typedef --- common/include/villas/memory.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/include/villas/memory.hpp b/common/include/villas/memory.hpp index 1acefd3ca..808835883 100644 --- a/common/include/villas/memory.hpp +++ b/common/include/villas/memory.hpp @@ -27,6 +27,7 @@ public: using deallocator_fn = std::function; using Ptr = std::shared_ptr; + using UniquePtr = std::unique_ptr; // cppcheck-suppress passedByValue MemoryBlock(size_t offset, size_t size, MemoryManager::AddressSpaceId addrSpaceId) :