summaryrefslogtreecommitdiff
path: root/include/erebos/service.h
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2021-01-22 23:11:53 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2021-01-22 23:11:53 +0100
commit3a3cce8eed7e43faa8c9f606e56bb43ba3bd9451 (patch)
treea71fc572b2d04554b6799afa5cf1631719e31b7b /include/erebos/service.h
parent05ecd0105d4e723517bc269c9b42bc650743ee89 (diff)
Service: drop const from handle method
Diffstat (limited to 'include/erebos/service.h')
-rw-r--r--include/erebos/service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/erebos/service.h b/include/erebos/service.h
index fa7f105..cec5ea0 100644
--- a/include/erebos/service.h
+++ b/include/erebos/service.h
@@ -31,7 +31,7 @@ public:
};
virtual UUID uuid() const = 0;
- virtual void handle(Context &) const = 0;
+ virtual void handle(Context &) = 0;
};
}