mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Remove redundant C++ lambda parentheses (NFC) (#3433)
This commit is contained in:
@@ -118,7 +118,7 @@ bool DoubleSolenoid::IsRevSolenoidDisabled() const {
|
||||
void DoubleSolenoid::InitSendable(SendableBuilder& builder) {
|
||||
builder.SetSmartDashboardType("Double Solenoid");
|
||||
builder.SetActuator(true);
|
||||
builder.SetSafeState([=]() { Set(kOff); });
|
||||
builder.SetSafeState([=] { Set(kOff); });
|
||||
builder.AddSmallStringProperty(
|
||||
"Value",
|
||||
[=](wpi::SmallVectorImpl<char>& buf) -> std::string_view {
|
||||
|
||||
Reference in New Issue
Block a user