diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-09-09 23:35:21 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-09-09 23:35:21 +0000 |
| commit | 1d0ba9953d2bdc7d43a47705b598df97197fb9f5 (patch) | |
| tree | e9453ce41d43ac549a2a46ba197f3861a2ac6c98 /Common/interface | |
| parent | Another attempt to fix gcc/clang builds (diff) | |
| download | DiligentCore-1d0ba9953d2bdc7d43a47705b598df97197fb9f5.tar.gz DiligentCore-1d0ba9953d2bdc7d43a47705b598df97197fb9f5.zip | |
Fixing clang build error and warnings
Diffstat (limited to 'Common/interface')
| -rw-r--r-- | Common/interface/FixedBlockMemoryAllocator.h | 2 |
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); |
