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

This commit is contained in:
2025-09-17 12:37:55 +02:00
parent 6dc2b131f7
commit 59a5ba452f

View File

@@ -450,8 +450,10 @@ class HIDDEN sinqAxis : public asynMotorAxis {
void setTargetPosition(double targetPosition);
private:
std::unique_ptr<sinqAxisImpl> pSinqA_;
// Ordering matters because pC_ is initialized before pSinqA_ in the
// constructor
sinqController *pC_;
std::unique_ptr<sinqAxisImpl> pSinqA_;
};
// =============================================================================