Skip to content

Commit 49e6f84

Browse files
committed
Switch to std::array
1 parent 7f55703 commit 49e6f84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wpimath/src/test/native/cpp/TimeTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ void ProcessDurations(const wpi::array<units::nanosecond_t, N>& durations,
9595

9696
wpi::print("{}Last 10: {}\n", prefix, buffer);
9797

98-
wpi::array<units::nanosecond_t, N> sorted{durations};
98+
std::array<units::nanosecond_t, N> sorted{durations};
9999

100100
[[ maybe_unused ]] auto foo = sorted[0];
101101
}

0 commit comments

Comments
 (0)