Skip to content
Snippets Groups Projects
Commit adb10a48 authored by Jeremie Deray's avatar Jeremie Deray
Browse files

StateBlock not copyable/movable

parent e65badd3
No related branches found
No related tags found
1 merge request!205Mutex state block
Pipeline #
......@@ -74,6 +74,11 @@ public:
**/
StateBlock(const Eigen::VectorXs& _state, bool _fixed = false, LocalParametrizationBasePtr _local_param_ptr = nullptr);
///< Explicitly not copyable/movable
StateBlock(const StateBlock& o) = delete;
StateBlock(StateBlock&& o) = delete;
StateBlock& operator=(const StateBlock& o) = delete;
/** \brief Destructor
**/
virtual ~StateBlock();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment