diff --git a/.clang-format b/.clang-format index 8df901fc31..2643c1b58a 100644 --- a/.clang-format +++ b/.clang-format @@ -157,7 +157,7 @@ SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false SpaceBeforeSquareBrackets: false -Standard: Auto +Standard: c++17 StatementMacros: - Q_UNUSED - QT_REQUIRE_VERSION diff --git a/wpilibc/src/main/native/include/frc/shuffleboard/SuppliedValueWidget.h b/wpilibc/src/main/native/include/frc/shuffleboard/SuppliedValueWidget.h index c087250b4e..a2b042ef5a 100644 --- a/wpilibc/src/main/native/include/frc/shuffleboard/SuppliedValueWidget.h +++ b/wpilibc/src/main/native/include/frc/shuffleboard/SuppliedValueWidget.h @@ -20,13 +20,13 @@ namespace frc { class ShuffleboardContainer; template -class SuppliedValueWidget : public ShuffleboardWidget > { +class SuppliedValueWidget : public ShuffleboardWidget> { public: SuppliedValueWidget(ShuffleboardContainer& parent, std::string_view title, std::function supplier, std::function setter) : ShuffleboardValue(title), - ShuffleboardWidget >(parent, title), + ShuffleboardWidget>(parent, title), m_supplier(supplier), m_setter(setter) {}