From bcfcc981ffd4fdfdf3313e90557b3a4782498caa Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 28 Nov 2019 00:05:10 -0800 Subject: Fixed leftover issues from clang-formatting --- Graphics/GraphicsEngineD3D12/src/RootSignature.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngineD3D12') diff --git a/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp b/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp index d96194ce..26134228 100644 --- a/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp +++ b/Graphics/GraphicsEngineD3D12/src/RootSignature.cpp @@ -478,7 +478,7 @@ void RootSignature::Finalize(ID3D12Device* pd3d12Device) auto TotalParams = m_RootParams.GetNumRootTables() + m_RootParams.GetNumRootViews(); - std::vector> D3D12Parameters{TotalParams, D3D12_ROOT_PARAMETER(), STD_ALLOCATOR_RAW_MEM(D3D12_ROOT_PARAMETER, GetRawAllocator(), "Allocator for vector")}; + std::vector> D3D12Parameters(TotalParams, D3D12_ROOT_PARAMETER(), STD_ALLOCATOR_RAW_MEM(D3D12_ROOT_PARAMETER, GetRawAllocator(), "Allocator for vector")); for (Uint32 rt = 0; rt < m_RootParams.GetNumRootTables(); ++rt) { const auto& RootTable = m_RootParams.GetRootTable(rt); -- cgit v1.2.3