Fixed some more warnings
All checks were successful
Test And Build / Lint (push) Successful in 5s
Test And Build / Build (push) Successful in 6s

This commit is contained in:
2025-09-17 11:28:12 +02:00
parent cb4adb068c
commit 0e10bcf69d
2 changed files with 14 additions and 0 deletions

View File

@@ -58,6 +58,13 @@ class HIDDEN sinqController : public asynMotorController {
*/
virtual ~sinqController(void);
/**
* @brief Delete the copy and copy assignment constructors, because this
* class should not be copied (it is tied to hardware!)
*/
sinqController(const sinqController &) = delete;
sinqController &operator=(const sinqController &) = delete;
/**
* @brief Overloaded function of asynMotorController
*