forked from OSchip/llvm-project
[NFC] Add explicit return from main() in tests
llvm-svn: 358302
This commit is contained in:
parent
b95559c964
commit
11bbb5831b
|
@ -14,4 +14,6 @@ static_assert(_PSTL_VERSION_MAJOR == 9);
|
|||
static_assert(_PSTL_VERSION_MINOR == 00);
|
||||
static_assert(_PSTL_VERSION_PATCH == 0);
|
||||
|
||||
int main() { }
|
||||
int main() {
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue