@@ -52,7 +52,7 @@ namespace {
5252// return true if the internal validator was used, false otherwise
5353bool CreateValidator (CComPtr<IDxcValidator> &pValidator,
5454 std::string DxilDLLPath = " " ) {
55-
55+
5656 // default behavior uses internal validator
5757 if (DxilDLLPath == " " ) {
5858 IFT (CreateDxcValidator (IID_PPV_ARGS (&pValidator)));
@@ -178,9 +178,9 @@ HRESULT ValidateAndAssembleToContainer(AssembleInputs &inputs) {
178178 bool bInternalValidator = CreateValidator (pValidator, inputs.DxilDLLPath );
179179 // Warning on external Validator
180180 if (!bInternalValidator) {
181- unsigned diagID = inputs. pDiag -> getCustomDiagID (
182- clang::DiagnosticsEngine::Level::Warning,
183- " External validator loaded at %0" );
181+ unsigned diagID =
182+ inputs. pDiag -> getCustomDiagID ( clang::DiagnosticsEngine::Level::Warning,
183+ " External validator loaded at %0" );
184184 inputs.pDiag ->Report (diagID) << inputs.DxilDLLPath ;
185185 }
186186
@@ -275,9 +275,9 @@ HRESULT ValidateAndAssembleToContainer(AssembleInputs &inputs) {
275275 return valHR;
276276}
277277
278- HRESULT ValidateRootSignatureInContainer (
279- IDxcBlob *pRootSigContainer, clang::DiagnosticsEngine *pDiag,
280- std::string DxilDLLPath) {
278+ HRESULT ValidateRootSignatureInContainer (IDxcBlob *pRootSigContainer,
279+ clang::DiagnosticsEngine *pDiag,
280+ std::string DxilDLLPath) {
281281 HRESULT valHR = S_OK;
282282 CComPtr<IDxcValidator> pValidator;
283283 CComPtr<IDxcOperationResult> pValResult;
0 commit comments