summaryrefslogtreecommitdiff
path: root/src/sound.h
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-04-20 00:12:52 +0200
committerGitHub <noreply@github.com>2017-04-20 00:12:52 +0200
commitf98bbe193e0093aca8d8957cec82fdbd28639915 (patch)
tree19879fbca595d4e8cddfa8d7d069b7f78016a713 /src/sound.h
parentf3fe62a0bf9e775b3e6e838f104ab605a2238792 (diff)
downloadminetest-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/sound.h')
-rw-r--r--src/sound.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/sound.h b/src/sound.h
index ba2d629d2..d13799eac 100644
--- a/src/sound.h
+++ b/src/sound.h
@@ -34,13 +34,15 @@ public:
struct SimpleSoundSpec
{
+ SimpleSoundSpec(const std::string &name = "", float gain = 1.0) :
+ name(name),
+ gain(gain)
+ {}
+
+ bool exists() const { return name != ""; }
+
std::string name;
float gain;
- SimpleSoundSpec(std::string name = "", float gain = 1.0) : name(name), gain(gain)
- {
- }
- bool exists() { return name != ""; }
- // Serialization intentionally left out
};
class ISoundManager