mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
SysConf: std::move name in Entry constructor
Allows code to move into the constructor, avoiding copies entirely.
This commit is contained in:
@ -47,8 +47,8 @@ public:
|
||||
ByteBool = 7,
|
||||
};
|
||||
|
||||
Entry(Type type_, const std::string& name_);
|
||||
Entry(Type type_, const std::string& name_, std::vector<u8> bytes_);
|
||||
Entry(Type type_, std::string name_);
|
||||
Entry(Type type_, std::string name_, std::vector<u8> bytes_);
|
||||
|
||||
// Intended for use with the non array types.
|
||||
template <typename T>
|
||||
|
Reference in New Issue
Block a user