diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-04-19 00:36:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 00:36:30 +0200 |
commit | cf37a5569002e83cc4d6916b39118ceba134da1b (patch) | |
tree | 4de13e55c8f2b37fca85f4c9a4b15e52bc0f030a /src/client.cpp | |
parent | 5f2af7c4e80da1c646e5a19ceed5bd0871b56e85 (diff) | |
download | minetest-cf37a5569002e83cc4d6916b39118ceba134da1b.tar.gz minetest-cf37a5569002e83cc4d6916b39118ceba134da1b.tar.bz2 minetest-cf37a5569002e83cc4d6916b39118ceba134da1b.zip |
Fix various variables passed by copy instead of const ref (#5610)
Pointed by cppcheck
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index 7b962cd94..3cea4fbf4 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -57,7 +57,7 @@ extern gui::IGUIEnvironment* guienv; Client::Client( IrrlichtDevice *device, const char *playername, - std::string password, + const std::string &password, MapDrawControl &control, IWritableTextureSource *tsrc, IWritableShaderSource *shsrc, |