summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-19 11:39:39 -0400
committerGravatar Lioncash2018-07-19 11:40:36 -0400
commitdc35c3f9d751ff100d7d4c1ccd599574ce73254f (patch)
tree6d4772020efd5d72eee558db939f2aa25dcfc4ac /src
parentMerge pull request #699 from lioncash/vfs (diff)
downloadyuzu-dc35c3f9d751ff100d7d4c1ccd599574ce73254f.tar.gz
yuzu-dc35c3f9d751ff100d7d4c1ccd599574ce73254f.tar.xz
yuzu-dc35c3f9d751ff100d7d4c1ccd599574ce73254f.zip
nvdrv: Take std::string by const reference in GetDevice()
This is only ever used as a lookup into the device map, so we don't need to take the std::string instance by value here.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.h2
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:
30 30
31 /// Returns a pointer to one of the available devices, identified by its name. 31 /// Returns a pointer to one of the available devices, identified by its name.
32 template <typename T> 32 template <typename T>
33 std::shared_ptr<T> GetDevice(std::string name) { 33 std::shared_ptr<T> GetDevice(const std::string& name) {
34 auto itr = devices.find(name); 34 auto itr = devices.find(name);
35 if (itr == devices.end()) 35 if (itr == devices.end())
36 return nullptr; 36 return nullptr;