diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-04-20 00:12:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 00:12:52 +0200 |
commit | f98bbe193e0093aca8d8957cec82fdbd28639915 (patch) | |
tree | 19879fbca595d4e8cddfa8d7d069b7f78016a713 /src/genericobject.h | |
parent | f3fe62a0bf9e775b3e6e838f104ab605a2238792 (diff) | |
download | minetest-f98bbe193e0093aca8d8957cec82fdbd28639915.tar.gz minetest-f98bbe193e0093aca8d8957cec82fdbd28639915.tar.bz2 minetest-f98bbe193e0093aca8d8957cec82fdbd28639915.zip |
Fix various copy instead of const ref reported by cppcheck (part 3) (#5616)
* Also remove 2 non declared but defined functions
* Make some functions around const ref changes const
Diffstat (limited to 'src/genericobject.h')
-rw-r--r-- | src/genericobject.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/genericobject.h b/src/genericobject.h index 7d2ec4b14..d82650f0e 100644 --- a/src/genericobject.h +++ b/src/genericobject.h @@ -73,13 +73,16 @@ std::string gob_cmd_update_physics_override(float physics_override_speed, std::string gob_cmd_update_animation(v2f frames, float frame_speed, float frame_blend, bool frame_loop); -std::string gob_cmd_update_bone_position(std::string bone, v3f position, v3f rotation); +std::string gob_cmd_update_bone_position(const std::string &bone, v3f position, + v3f rotation); -std::string gob_cmd_update_attachment(int parent_id, std::string bone, v3f position, v3f rotation); +std::string gob_cmd_update_attachment(int parent_id, const std::string &bone, + v3f position, v3f rotation); std::string gob_cmd_update_nametag_attributes(video::SColor color); -std::string gob_cmd_update_infant(u16 id, u8 type, std::string client_initialization_data); +std::string gob_cmd_update_infant(u16 id, u8 type, + const std::string &client_initialization_data); #endif |