Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,6 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
INTERFACE
-Wno-microsoft-exception-spec
-Wno-tautological-constant-out-of-range-compare
-Wno-enum-constexpr-conversion
)
elseif (PLATFORM_APPLE)
# Allow unavailable API warnings not being errors as they tend to randomly
Expand Down
2 changes: 1 addition & 1 deletion Graphics/GraphicsEngineD3D12/src/RootParamsManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace Diligent
namespace
{

constexpr D3D12_DESCRIPTOR_RANGE_TYPE InvalidDescriptorRangeType = static_cast<D3D12_DESCRIPTOR_RANGE_TYPE>(-1);
const D3D12_DESCRIPTOR_RANGE_TYPE InvalidDescriptorRangeType = static_cast<D3D12_DESCRIPTOR_RANGE_TYPE>(-1);

#ifdef DILIGENT_DEBUG
void DbgValidateD3D12RootTable(const D3D12_ROOT_DESCRIPTOR_TABLE& d3d12Tbl)
Expand Down
Loading