summaryrefslogtreecommitdiffstats
path: root/Graphics
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-09-09 22:53:07 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-09-09 22:53:07 +0000
commite4508e87ec9f67c150b557fb20ea832a660dba24 (patch)
tree1761def0a11a235a55f8390a42898f582e8b120d /Graphics
parentAttempting to fix build error on gcc (diff)
downloadDiligentCore-e4508e87ec9f67c150b557fb20ea832a660dba24.tar.gz
DiligentCore-e4508e87ec9f67c150b557fb20ea832a660dba24.zip
Another attempt to fix gcc/clang builds
Diffstat (limited to 'Graphics')
-rw-r--r--Graphics/GraphicsAccessories/interface/RingBuffer.h6
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);