From 00e8dcdb71c6ae3fefd83958ead19b1d72f544e4 Mon Sep 17 00:00:00 2001 From: assiduous Date: Sun, 26 Jan 2020 15:21:35 -0800 Subject: More .h -> .hpp renamings --- Graphics/GraphicsEngine/include/EngineMemory.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Graphics/GraphicsEngine') diff --git a/Graphics/GraphicsEngine/include/EngineMemory.h b/Graphics/GraphicsEngine/include/EngineMemory.h index b3197aed..8211bf35 100644 --- a/Graphics/GraphicsEngine/include/EngineMemory.h +++ b/Graphics/GraphicsEngine/include/EngineMemory.h @@ -32,8 +32,8 @@ #include "MemoryAllocator.h" -namespace Diligent -{ +DILIGENT_BEGIN_NAMESPACE(Diligent) + /// Sets raw memory allocator. This function must be called before any memory allocation/deallocation function /// is called. void SetRawAllocator(IMemoryAllocator* pRawAllocator); @@ -47,7 +47,7 @@ IMemoryAllocator& GetStringAllocator(); #define ALLOCATE(Allocator, Desc, Type, Count) reinterpret_cast(ALLOCATE_RAW(Allocator, Desc, sizeof(Type) * (Count))) #define FREE(Allocator, Ptr) Allocator.Free(Ptr) -} // namespace Diligent +DILIGENT_END_NAMESPACE // namespace Diligent #if 0 -- cgit v1.2.3