mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
A tiny fix in KernelCreateInfo
This commit is contained in:
parent
fb04940ad3
commit
4cdb0cbf6e
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ struct KernelCreateInfo {
|
|||
|
||||
KernelCreateInfo(KernelCreateInfo&& other)
|
||||
: kernel_def(std::move(other.kernel_def)),
|
||||
kernel_create_func(other.kernel_create_func) {}
|
||||
kernel_create_func(std::move(other.kernel_create_func)) {}
|
||||
};
|
||||
|
||||
using KernelCreateMap = std::multimap<std::string, KernelCreateInfo>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue