mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
Remove redundant C++ lambda parentheses (NFC) (#3433)
This commit is contained in:
@@ -49,7 +49,7 @@ void SendableChooser<T>::InitSendable(SendableBuilder& builder) {
|
||||
builder.GetEntry(kInstance).SetDouble(m_instance);
|
||||
builder.AddStringArrayProperty(
|
||||
kOptions,
|
||||
[=]() {
|
||||
[=] {
|
||||
std::vector<std::string> keys;
|
||||
for (const auto& choice : m_choices) {
|
||||
keys.emplace_back(choice.first());
|
||||
|
||||
Reference in New Issue
Block a user