summaryrefslogtreecommitdiffstats
path: root/Graphics
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-09-09 22:31:07 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-09-09 22:31:07 +0000
commit8cb0eb51c5e0ccf892b4687fe3fe4fb071ae8357 (patch)
tree5237f9f3ea9299251dd2d0b984e0df3c15be9769 /Graphics
parentUpdated OpenGL debug message output (diff)
downloadDiligentCore-8cb0eb51c5e0ccf892b4687fe3fe4fb071ae8357.tar.gz
DiligentCore-8cb0eb51c5e0ccf892b4687fe3fe4fb071ae8357.zip
Attempting to fix build error on gcc
Diffstat (limited to 'Graphics')
-rw-r--r--Graphics/GraphicsAccessories/interface/RingBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsAccessories/interface/RingBuffer.h b/Graphics/GraphicsAccessories/interface/RingBuffer.h
index e72e2692..6a08cfe0 100644
--- a/Graphics/GraphicsAccessories/interface/RingBuffer.h
+++ b/Graphics/GraphicsAccessories/interface/RingBuffer.h
@@ -42,7 +42,7 @@ namespace Diligent
using OffsetType = size_t;
struct FrameHeadAttribs
{
- FrameHeadAttribs(Uint64 fv, OffsetType off, OffsetType sz) :
+ FrameHeadAttribs(Uint64 fv, OffsetType off, OffsetType sz)noexcept :
FenceValue(fv),
Offset (off),
Size (sz)