summaryrefslogtreecommitdiffstats
path: root/Common/interface
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-09-09 23:35:21 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-09-09 23:35:21 +0000
commit1d0ba9953d2bdc7d43a47705b598df97197fb9f5 (patch)
treee9453ce41d43ac549a2a46ba197f3861a2ac6c98 /Common/interface
parentAnother attempt to fix gcc/clang builds (diff)
downloadDiligentCore-1d0ba9953d2bdc7d43a47705b598df97197fb9f5.tar.gz
DiligentCore-1d0ba9953d2bdc7d43a47705b598df97197fb9f5.zip
Fixing clang build error and warnings
Diffstat (limited to 'Common/interface')
-rw-r--r--Common/interface/FixedBlockMemoryAllocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Common/interface/FixedBlockMemoryAllocator.h b/Common/interface/FixedBlockMemoryAllocator.h
index 2b9a5f3e..75ea4e97 100644
--- a/Common/interface/FixedBlockMemoryAllocator.h
+++ b/Common/interface/FixedBlockMemoryAllocator.h
@@ -49,7 +49,7 @@ namespace Diligent
#endif
/// Memory allocator that allocates memory in a fixed-size chunks
-class FixedBlockMemoryAllocator : public IMemoryAllocator
+class FixedBlockMemoryAllocator final : public IMemoryAllocator
{
public:
FixedBlockMemoryAllocator(IMemoryAllocator& RawMemoryAllocator, size_t BlockSize, Uint32 NumBlocksInPage);