summaryrefslogtreecommitdiff
path: root/src/staticobject.h
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-08-20 13:30:50 +0200
committerGitHub <noreply@github.com>2017-08-20 13:30:50 +0200
commit1c1c97cbd1d7913ac12bf550ec02c97f843a0fd3 (patch)
tree03dd0c39e323c7f0b1f06014ff30e74f429bfa01 /src/staticobject.h
parent50669cd2822a11570ae462972194eeb2d585a8c1 (diff)
downloadminetest-1c1c97cbd1d7913ac12bf550ec02c97f843a0fd3.tar.gz
minetest-1c1c97cbd1d7913ac12bf550ec02c97f843a0fd3.tar.bz2
minetest-1c1c97cbd1d7913ac12bf550ec02c97f843a0fd3.zip
Modernize source code: last part (#6285)
* Modernize source code: last par * Use empty when needed * Use emplace_back instead of push_back when needed * For range-based loops * Initializers fixes * constructors, destructors default * c++ C stl includes
Diffstat (limited to 'src/staticobject.h')
-rw-r--r--src/staticobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/staticobject.h b/src/staticobject.h
index c457f1384..43f542632 100644
--- a/src/staticobject.h
+++ b/src/staticobject.h
@@ -32,8 +32,8 @@ struct StaticObject
v3f pos;
std::string data;
- StaticObject() {}
- StaticObject(u8 type_, v3f pos_, const std::string &data_):
+ StaticObject() = default;
+ StaticObject(u8 type_, const v3f &pos_, const std::string &data_):
type(type_),
pos(pos_),
data(data_)
@@ -51,7 +51,7 @@ public:
Inserts an object to the container.
Id must be unique (active) or 0 (stored).
*/
- void insert(u16 id, StaticObject obj)
+ void insert(u16 id, const StaticObject &obj)
{
if(id == 0)
{