We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d39906 commit debb7ccCopy full SHA for debb7cc
tools/clang/tools/dxcompiler/dxcapi.cpp
@@ -58,16 +58,6 @@ HRESULT CreateDxcContainerReflection(REFIID riid, _Out_ LPVOID *ppv) {
58
HRESULT CreateDxcContainerBuilder(REFIID riid, _Out_ LPVOID *ppv) {
59
// Call dxil.dll's containerbuilder
60
*ppv = nullptr;
61
- const char *warning;
62
- HRESULT hr =
63
- S_OK; // originally: DxilLibCreateInstance(CLSID_DxcContainerBuilder,
64
- // (IDxcContainerBuilder **)ppv);
65
- if (FAILED(hr)) {
66
- warning = "Unable to create container builder from dxil.dll. Resulting "
67
- "container will not be signed.\n";
68
- } else {
69
- return hr;
70
- }
71
72
CComPtr<DxcContainerBuilder> Result =
73
DxcContainerBuilder::Alloc(DxcGetThreadMallocNoRef());
0 commit comments