diff --git a/orc-rt/include/orc-rt/Session.h b/orc-rt/include/orc-rt/Session.h index fe4f07157385..fbace053bd72 100644 --- a/orc-rt/include/orc-rt/Session.h +++ b/orc-rt/include/orc-rt/Session.h @@ -42,6 +42,8 @@ public: // Sessions are not copyable or moveable. Session(const Session &) = delete; Session &operator=(const Session &) = delete; + Session(Session &&) = delete; + Session &operator=(Session &&) = delete; ~Session();