diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-09-09 22:53:07 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-09-09 22:53:07 +0000 |
| commit | e4508e87ec9f67c150b557fb20ea832a660dba24 (patch) | |
| tree | 1761def0a11a235a55f8390a42898f582e8b120d /Graphics | |
| parent | Attempting to fix build error on gcc (diff) | |
| download | DiligentCore-e4508e87ec9f67c150b557fb20ea832a660dba24.tar.gz DiligentCore-e4508e87ec9f67c150b557fb20ea832a660dba24.zip | |
Another attempt to fix gcc/clang builds
Diffstat (limited to 'Graphics')
| -rw-r--r-- | Graphics/GraphicsAccessories/interface/RingBuffer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Graphics/GraphicsAccessories/interface/RingBuffer.h b/Graphics/GraphicsAccessories/interface/RingBuffer.h index 6a08cfe0..0f8cfefd 100644 --- a/Graphics/GraphicsAccessories/interface/RingBuffer.h +++ b/Graphics/GraphicsAccessories/interface/RingBuffer.h @@ -50,9 +50,9 @@ namespace Diligent // Fence value associated with the command list in which // the allocation could have been referenced last time - const Uint64 FenceValue; - const OffsetType Offset; - const OffsetType Size; + Uint64 FenceValue; + OffsetType Offset; + OffsetType Size; }; static constexpr const OffsetType InvalidOffset = static_cast<OffsetType>(-1); |
