Commit bf37e1f
authored
Fix main() signature to comply with libc++ testing requirements
Changed main() signature from main() to main(int, char**) as per the Testing libc++ documentation requirement (https://libcxx.llvm.org/TestingLibcxx.html).
The documentation states: "Some platforms where libc++ is tested have requirement on the signature of main and require main to explicitly return a value. Therefore the typical main function should look like: int main(int, char**)"1 parent 95c0ce8 commit bf37e1f
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
| 81 | + | |
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
| |||
0 commit comments