Skip to content

Commit ee6d8c1

Browse files
committedJan 14, 2017
Fix missing const in ServerActiveObject::getStaticData
This fixes #5033 Signed-off-by: Loic Blot <loic.blot@unix-experience.fr>
1 parent 8002366 commit ee6d8c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/serverobject.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class ServerActiveObject : public ActiveObject
119119
when it is created (converted from static to active - actually
120120
the data is the static form)
121121
*/
122-
virtual void getStaticData(std::string *result)
122+
virtual void getStaticData(std::string *result) const
123123
{
124124
assert(isStaticAllowed());
125125
*result = "";

0 commit comments

Comments
 (0)
Please sign in to comment.