diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-19 13:27:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 13:27:48 -0700 |
commit | eb9b55eafe822b1f14b298969c10aa6047e432af (patch) | |
tree | 9a15be97af4607466a375ed6b33c9674c73933ae /src | |
parent | 78dd1cd44103d5b23903fb29ebad87e9c8fdacda (diff) | |
parent | dc35c3f9d751ff100d7d4c1ccd599574ce73254f (diff) |
Merge pull request #715 from lioncash/const-ref
nvdrv: Take std::string by const reference in GetDevice()
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/nvdrv/nvdrv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.h b/src/core/hle/service/nvdrv/nvdrv.h index 579940817..35b2c65fc 100644 --- a/src/core/hle/service/nvdrv/nvdrv.h +++ b/src/core/hle/service/nvdrv/nvdrv.h @@ -30,7 +30,7 @@ public: /// Returns a pointer to one of the available devices, identified by its name. template <typename T> - std::shared_ptr<T> GetDevice(std::string name) { + std::shared_ptr<T> GetDevice(const std::string& name) { auto itr = devices.find(name); if (itr == devices.end()) return nullptr; |