From 094e13588e6029354386f31e49b795a7fada6a58 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 28 Nov 2019 10:00:29 -0800 Subject: Fixed few vector initialization issues --- Graphics/GraphicsTools/include/TextureUploaderBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Graphics/GraphicsTools') diff --git a/Graphics/GraphicsTools/include/TextureUploaderBase.h b/Graphics/GraphicsTools/include/TextureUploaderBase.h index 5481b1a2..6026d60b 100644 --- a/Graphics/GraphicsTools/include/TextureUploaderBase.h +++ b/Graphics/GraphicsTools/include/TextureUploaderBase.h @@ -53,7 +53,7 @@ public: // clang-format off ObjectBase{pRefCounters}, m_Desc {Desc}, - m_MappedData {m_Desc.ArraySize * m_Desc.MipLevels} + m_MappedData (m_Desc.ArraySize * m_Desc.MipLevels) // clang-format on { } -- cgit v1.2.3