summaryrefslogtreecommitdiffstats
path: root/src/server/RunContext.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/RunContext.hpp')
-rw-r--r--src/server/RunContext.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/RunContext.hpp b/src/server/RunContext.hpp
index 0ba4916b..7859d545 100644
--- a/src/server/RunContext.hpp
+++ b/src/server/RunContext.hpp
@@ -68,6 +68,9 @@ public:
*/
RunContext(const RunContext& copy);
+ RunContext& operator=(const RunContext&) = delete;
+ RunContext& operator=(RunContext&&) = delete;
+
/** Return true iff the given port should broadcast its value.
*
* Whether or not broadcasting is actually done is a per-client property,
@@ -138,8 +141,6 @@ public:
inline bool realtime() const { return _realtime; }
protected:
- const RunContext& operator=(const RunContext& copy) = delete;
-
void run();
Engine& _engine; ///< Engine we're running in