Skip to content

Commit

Permalink
Remove extra semi colon from fatal/type/test/foreach_test.cpp
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: vitaut

Differential Revision: D52965958

fbshipit-source-id: db27074ccc119f76cd541aabe0fc17a0258c79c1
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 24, 2024
1 parent 95eba95 commit 425d5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fatal/type/test/foreach_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ FATAL_TEST(foreach_test, very_long_type_list) {
std::vector<std::string> ret{};
for (std::size_t i = 0; i < size; ++i) {
ret.push_back(to_string("foo_", i, "_s"));
};
}
return ret;
}();
FATAL_EXPECT_TRUE(expected == actual);
Expand Down

0 comments on commit 425d5c0

Please sign in to comment.