forked from OSchip/llvm-project
[libc++][NFC] Add missing 'return 0'
This commit is contained in:
parent
ea8ed5cbcf
commit
0392d425bb
|
@ -109,4 +109,6 @@ constexpr bool test() {
|
||||||
int main(int, char**) {
|
int main(int, char**) {
|
||||||
test();
|
test();
|
||||||
static_assert(test());
|
static_assert(test());
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue