From b2828981933a4abe05c5613d372e11a3e2e006a9 Mon Sep 17 00:00:00 2001 From: Sundaram Ramaswamy Date: Wed, 28 Feb 2024 09:41:03 +0530 Subject: [PATCH] Fix compiler error in IvConstantTableD3D11.h Missing include leads to compiler errors with Visual Studio 2022 i.e. Microsoft C/C++ Optimizing Compiler Version 19.39.33520. --- src/common/IvGraphics/D3D11/IvConstantTableD3D11.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/IvGraphics/D3D11/IvConstantTableD3D11.h b/src/common/IvGraphics/D3D11/IvConstantTableD3D11.h index 3449112..aeff358 100644 --- a/src/common/IvGraphics/D3D11/IvConstantTableD3D11.h +++ b/src/common/IvGraphics/D3D11/IvConstantTableD3D11.h @@ -18,6 +18,7 @@ //------------------------------------------------------------------------------- #include #include +#include #include "IvUniform.h" @@ -101,4 +102,4 @@ class IvConstantTableD3D11 //-- Externs -------------------------------------------------------------------- //------------------------------------------------------------------------------- -#endif \ No newline at end of file +#endif