mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Make LinearFilter copyable and moveable (#1789)
This commit is contained in:
committed by
Peter Johnson
parent
76930250c0
commit
ef037457e5
@@ -87,9 +87,6 @@ class LinearFilter {
|
||||
: LinearFilter(wpi::makeArrayRef(ffGains.begin(), ffGains.end()),
|
||||
wpi::makeArrayRef(fbGains.begin(), fbGains.end())) {}
|
||||
|
||||
LinearFilter(LinearFilter&&) = default;
|
||||
LinearFilter& operator=(LinearFilter&&) = default;
|
||||
|
||||
// Static methods to create commonly used filters
|
||||
/**
|
||||
* Creates a one-pole IIR low-pass filter of the form:<br>
|
||||
|
||||
Reference in New Issue
Block a user