mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-03 03:58:54 +00:00
Add default params to Env C++ constructor (#2246)
This commit is contained in:
parent
63acd4e89b
commit
7b4e6636f8
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ struct Value;
|
|||
|
||||
struct Env : Base<OrtEnv> {
|
||||
Env(std::nullptr_t) {}
|
||||
Env(OrtLoggingLevel default_logging_level, _In_ const char* logid);
|
||||
Env(OrtLoggingLevel default_logging_level = ORT_LOGGING_LEVEL_WARNING, _In_ const char* logid = "");
|
||||
Env(OrtLoggingLevel default_logging_level, const char* logid, OrtLoggingFunction logging_function, void* logger_param);
|
||||
explicit Env(OrtEnv* p) : Base<OrtEnv>{p} {}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue