From b89e981763f428e771718972ed5ff82db2b6191d Mon Sep 17 00:00:00 2001 From: Ryan Hill Date: Mon, 26 Apr 2021 16:41:58 -0700 Subject: [PATCH] Fix merge break --- onnxruntime/core/providers/shared_library/provider_host_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/core/providers/shared_library/provider_host_api.h b/onnxruntime/core/providers/shared_library/provider_host_api.h index 8259c1f0a6..ab8d4e1da7 100644 --- a/onnxruntime/core/providers/shared_library/provider_host_api.h +++ b/onnxruntime/core/providers/shared_library/provider_host_api.h @@ -10,7 +10,7 @@ struct Provider { // Old simple device_id API to create provider factories, currently used by DNNL And TensorRT virtual std::shared_ptr CreateExecutionProviderFactory(int /*device_id*/) { return nullptr; } - virtual const void* GetInfo() { return nullptr; } // Returns a provider specific information interface if it exists + virtual void* GetInfo() { return nullptr; } // Returns a provider specific information interface if it exists virtual void Shutdown() = 0; };