Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
KangarooKoala committed Jul 9, 2024
1 parent cc6df45 commit 08bc678
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions wpimath/src/main/native/include/frc/struct/VectorStruct.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ struct wpi::Struct<frc::Matrixd<Size, 1, Options, MaxRows, MaxCols>> {
wpi::Concat("struct:Vector__"_ct_string, wpi::NumToCtString<Size>());
static constexpr std::string_view GetTypeString() { return kTypeString; }
static constexpr size_t GetSize() { return Size * 8; }
static constexpr ct_string kSchema =
wpi::Concat("double data["_ct_string, wpi::NumToCtString<Size>(),
"]"_ct_string);
static constexpr ct_string kSchema = wpi::Concat(
"double data["_ct_string, wpi::NumToCtString<Size>(), "]"_ct_string);
static constexpr std::string_view GetSchema() { return kSchema; }

static frc::Matrixd<Size, 1, Options, MaxRows, MaxCols> Unpack(
Expand Down

0 comments on commit 08bc678

Please sign in to comment.