Skip to content

Commit

Permalink
Merge pull request mockingbirdnest#3948 from eggrobin/mac-vector-is-a…
Browse files Browse the repository at this point in the history
…n-alias

Fix the mac build
  • Loading branch information
eggrobin authored Mar 31, 2024
2 parents 3dcd123 + 52a45af commit 69dd1fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ksp_plugin_test/plugin_compatibility_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,10 @@ TEST_P(PluginCompatibilityTest, Reach) {
std::span const first_10_flybys(flybys.begin(), 10);
std::span const subsequent_flybys(flybys.begin() + 10, flybys.end());
#else // TODO(egg): Remove when clang really has C++23.
std::vector const first_10_flybys(flybys.begin(), flybys.begin() + 10);
std::vector const subsequent_flybys(flybys.begin() + 10, flybys.end());
std::vector<std::pair<Instant, std::string>> const first_10_flybys(
flybys.begin(), flybys.begin() + 10);
std::vector<std::pair<Instant, std::string>> const subsequent_flybys(
flybys.begin() + 10, flybys.end());
#endif
EXPECT_THAT(
first_10_flybys,
Expand Down

0 comments on commit 69dd1fb

Please sign in to comment.