[NFC] Add explicit return from main() in tests

llvm-svn: 358302
This commit is contained in:
Louis Dionne 2019-04-12 18:38:58 +00:00
parent b95559c964
commit 11bbb5831b
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}