From 9639eded4bc5ea191d47d22668909ef3658389f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gin=C3=A9s=20Hidalgo?= Date: Wed, 27 Oct 2021 05:49:52 -0400 Subject: [PATCH] Missing `#pragma once` in dml_provider_factory.h (#9457) --- include/onnxruntime/core/providers/dml/dml_provider_factory.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/onnxruntime/core/providers/dml/dml_provider_factory.h b/include/onnxruntime/core/providers/dml/dml_provider_factory.h index 071e7f0251..f55c4c09fa 100644 --- a/include/onnxruntime/core/providers/dml/dml_provider_factory.h +++ b/include/onnxruntime/core/providers/dml/dml_provider_factory.h @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +#pragma once + #pragma warning(push) #pragma warning(disable : 4201) // nonstandard extension used: nameless struct/union #include @@ -44,4 +46,4 @@ ORT_API_STATUS(OrtSessionOptionsAppendExecutionProviderEx_DML, _In_ OrtSessionOp #ifdef __cplusplus } -#endif \ No newline at end of file +#endif