Tests: Fix RunCMake.ExcludeFromAll test program warning

Add a return value to `main()`.
This commit is contained in:
Brad King 2020-07-23 06:51:40 -04:00
parent 99c131c5a3
commit 36743436cf

View File

@ -1,3 +1,4 @@
int main() int main()
{ {
return 0;
} }