mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
Common/SettingsHandler: Use std::string_view more
We don't need to enforce the use of std::string instances with AddSetting(). We can accept views and only construct one string, rather than three temporaries.
This commit is contained in:
parent
04b9f6c28d
commit
88a973131c
2 changed files with 5 additions and 5 deletions
|
@ -27,7 +27,7 @@ public:
|
|||
SettingsHandler();
|
||||
explicit SettingsHandler(Buffer&& buffer);
|
||||
|
||||
void AddSetting(const std::string& key, const std::string& value);
|
||||
void AddSetting(std::string_view key, std::string_view value);
|
||||
|
||||
const Buffer& GetBytes() const;
|
||||
void SetBytes(Buffer&& buffer);
|
||||
|
@ -38,7 +38,7 @@ public:
|
|||
static std::string GenerateSerialNumber();
|
||||
|
||||
private:
|
||||
void WriteLine(const std::string& str);
|
||||
void WriteLine(std::string_view str);
|
||||
void WriteByte(u8 b);
|
||||
|
||||
std::array<u8, SETTINGS_SIZE> m_buffer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue