Searched defs:KernelConfigKey (Results 1 – 1 of 1) sorted by relevance
30 struct KernelConfigKey : public std::string { struct31 KernelConfigKey() : std::string() {} in KernelConfigKey() function32 KernelConfigKey(const std::string &other) : std::string(other) {} in KernelConfigKey() function33 KernelConfigKey(std::string &&other) : std::string(std::forward<std::string>(other)) {} in KernelConfigKey() argument