From 020ec9c0f57bc652cfb7806715e1f4fc08946986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gin=C3=A9s=20Hidalgo?= Date: Mon, 1 Nov 2021 21:15:36 -0400 Subject: [PATCH] [DmlEp] Added missing include to DmlOperator.cpp to its own header (#9576) * Added missing include to DmlOperator.cpp to its own header * Update DmlOperator.cpp Followed @fdwr suggestion --- .../dml/DmlExecutionProvider/src/Operators/DmlOperator.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperator.cpp b/onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperator.cpp index 63b3cff4b4..f0e2b2893b 100644 --- a/onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperator.cpp +++ b/onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperator.cpp @@ -2,6 +2,7 @@ // Licensed under the MIT License. #include "precomp.h" +#include "DmlOperator.h" namespace Dml { @@ -504,4 +505,4 @@ namespace Dml ); } -} // namespace Dml \ No newline at end of file +} // namespace Dml