mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
SysConf: Return emplaced reference from AddEntry()
Allows GetOrAddEntry() to be implemented in a manner that doesn't result in a redundant lookup in the event an addition needs to be made.
This commit is contained in:
@ -75,7 +75,7 @@ public:
|
||||
std::vector<u8> bytes;
|
||||
};
|
||||
|
||||
void AddEntry(Entry&& entry);
|
||||
Entry& AddEntry(Entry&& entry);
|
||||
Entry* GetEntry(std::string_view key);
|
||||
const Entry* GetEntry(std::string_view key) const;
|
||||
Entry* GetOrAddEntry(std::string_view key, Entry::Type type);
|
||||
|
Reference in New Issue
Block a user