forked from OSchip/llvm-project
[libc++] Add missing `return 0` to main() functions in the tests
This commit is contained in:
parent
446f0c609f
commit
c01260a781
|
@ -69,6 +69,7 @@ int main(int, char**)
|
||||||
{
|
{
|
||||||
test();
|
test();
|
||||||
static_assert(test());
|
static_assert(test());
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // defined(TU1)
|
#endif // defined(TU1)
|
||||||
|
|
|
@ -43,4 +43,5 @@ int main(int, char**)
|
||||||
{
|
{
|
||||||
test();
|
test();
|
||||||
static_assert(test());
|
static_assert(test());
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue