From fcf852fea2b9267c9ad75921955d73a3143410ec Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 16 Apr 2015 14:25:12 +0200 Subject: [PATCH] fixed compiler warning, sent upstream (nw) --- 3rdparty/bgfx/src/renderer_d3d11.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdparty/bgfx/src/renderer_d3d11.h b/3rdparty/bgfx/src/renderer_d3d11.h index 1bbc3b29181..22bf6a0ddce 100644 --- a/3rdparty/bgfx/src/renderer_d3d11.h +++ b/3rdparty/bgfx/src/renderer_d3d11.h @@ -285,10 +285,10 @@ namespace bgfx { namespace d3d11 struct FrameBufferD3D11 { FrameBufferD3D11() - : m_denseIdx(UINT16_MAX) + : m_dsv(NULL) + , m_denseIdx(UINT16_MAX) , m_num(0) , m_numTh(0) - , m_dsv(NULL) { }