mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +00:00
[wpilibc] Add missing move constructors and assignment operators (#2959)
- Field2d - FieldObject2d - AnalogGyro
This commit is contained in:
@@ -104,8 +104,8 @@ class AnalogGyro : public GyroBase {
|
||||
|
||||
~AnalogGyro() override;
|
||||
|
||||
AnalogGyro(AnalogGyro&& rhs);
|
||||
AnalogGyro& operator=(AnalogGyro&& rhs);
|
||||
AnalogGyro(AnalogGyro&& rhs) = default;
|
||||
AnalogGyro& operator=(AnalogGyro&& rhs) = default;
|
||||
|
||||
/**
|
||||
* Return the actual angle in degrees that the robot is currently facing.
|
||||
|
||||
Reference in New Issue
Block a user