[libc++] Add missing `return 0` to main() functions in the tests

This commit is contained in:
Louis Dionne 2022-01-10 08:37:54 -05:00
parent 446f0c609f
commit c01260a781
2 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,7 @@ int main(int, char**)
{
test();
static_assert(test());
return 0;
}
#endif // defined(TU1)

View File

@ -43,4 +43,5 @@ int main(int, char**)
{
test();
static_assert(test());
return 0;
}