Skip to content

Commit

Permalink
AddressableLED: add move constructor/assignment operator
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Aug 21, 2024
1 parent 147e03d commit 34bdc96
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wpilibc/src/main/native/include/frc/AddressableLED.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ class AddressableLED {
*/
explicit AddressableLED(int port);

AddressableLED(AddressableLED&&) = default;
AddressableLED& operator=(AddressableLED&&) = default;

~AddressableLED();

/**
Expand Down

0 comments on commit 34bdc96

Please sign in to comment.