summaryrefslogtreecommitdiff
path: root/src/staticobject.h
diff options
context:
space:
mode:
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)
{