A tiny fix in KernelCreateInfo

This commit is contained in:
Changming Sun 2019-02-06 15:07:30 -08:00
parent fb04940ad3
commit 4cdb0cbf6e

View file

@ -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>;