From 88ea473c948bd9d12fc60238f7aae20473f85b02 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Thu, 22 Aug 2024 11:48:19 -0400 Subject: [PATCH] [wpilibc] AddressableLED: add move constructor/assignment operator (#6985) --- wpilibc/src/main/native/include/frc/AddressableLED.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wpilibc/src/main/native/include/frc/AddressableLED.h b/wpilibc/src/main/native/include/frc/AddressableLED.h index 26738bbbfd..5f1208608e 100644 --- a/wpilibc/src/main/native/include/frc/AddressableLED.h +++ b/wpilibc/src/main/native/include/frc/AddressableLED.h @@ -90,6 +90,9 @@ class AddressableLED { */ explicit AddressableLED(int port); + AddressableLED(AddressableLED&&) = default; + AddressableLED& operator=(AddressableLED&&) = default; + ~AddressableLED(); /**