Skip to content

Commit

Permalink
Fix missing const in ServerActiveObject::getStaticData
Browse files Browse the repository at this point in the history
This fixes #5033

Signed-off-by: Loic Blot <loic.blot@unix-experience.fr>
  • Loading branch information
nerzhul committed Jan 14, 2017
1 parent 8002366 commit ee6d8c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serverobject.h
Expand Up @@ -119,7 +119,7 @@ class ServerActiveObject : public ActiveObject
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 = "";
Expand Down

0 comments on commit ee6d8c1

Please sign in to comment.