projects
/
oweals
/
minetest.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8002366
)
Fix missing const in ServerActiveObject::getStaticData
author
Loic Blot
<loic.blot@unix-experience.fr>
Sat, 14 Jan 2017 11:03:50 +0000
(12:03 +0100)
committer
Loic Blot
<loic.blot@unix-experience.fr>
Sat, 14 Jan 2017 11:03:50 +0000
(12:03 +0100)
This fixes #5033
Signed-off-by: Loic Blot <loic.blot@unix-experience.fr>
src/serverobject.h
patch
|
blob
|
history
diff --git
a/src/serverobject.h
b/src/serverobject.h
index 26c8b062d61f63a2e28245acc2a5f89357f810ca..38204980e439b57beda6722863a6d16d73166c97 100644
(file)
--- a/
src/serverobject.h
+++ b/
src/serverobject.h
@@
-119,7
+119,7
@@
public:
when it is created (converted from static to active - actually
the data is the static form)
*/
- virtual void getStaticData(std::string *result)
+ virtual void getStaticData(std::string *result)
const
{
assert(isStaticAllowed());
*result = "";