Skip to content

Commit

Permalink
change order of initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Unger committed Feb 20, 2024
1 parent b12a8a9 commit 0d149e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encoders/hysteresis/HysteresisSensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "./HysteresisSensor.h"


HysteresisSensor::HysteresisSensor(Sensor& wrapped, float amount) : _wrapped(wrapped), _amount(amount) {
HysteresisSensor::HysteresisSensor(Sensor& wrapped, float amount) : _amount(amount), _wrapped(wrapped) {
// empty
};

Expand Down

0 comments on commit 0d149e5

Please sign in to comment.