diff options
author | Ivan Pozdeev <vano@mail.mipt.ru> | 2018-11-06 18:54:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-11-07 12:38:54 (GMT) |
commit | db0445f0c860cc561baf3b38f296b7f338385d63 (patch) | |
tree | b12b106cd391a748c3c7e75987c603e1050edb8f /Modules/FindOpenMP.cmake | |
parent | 44cc305ac12d58fe476f815b89f42288455e44a9 (diff) | |
download | CMake-db0445f0c860cc561baf3b38f296b7f338385d63.zip CMake-db0445f0c860cc561baf3b38f296b7f338385d63.tar.gz CMake-db0445f0c860cc561baf3b38f296b7f338385d63.tar.bz2 |
FindOpenMP: Fix warnings with -Wstrict-prototypes
With -Wstrict-prototype -Werror, the check would fail
Diffstat (limited to 'Modules/FindOpenMP.cmake')
-rw-r--r-- | Modules/FindOpenMP.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindOpenMP.cmake b/Modules/FindOpenMP.cmake index df0bbc4..c7376e3 100644 --- a/Modules/FindOpenMP.cmake +++ b/Modules/FindOpenMP.cmake @@ -124,7 +124,7 @@ endfunction() set(OpenMP_C_CXX_TEST_SOURCE " #include <omp.h> -int main() { +int main(void) { #ifdef _OPENMP omp_get_max_threads(); return 0; @@ -291,7 +291,7 @@ const char ompver_str[] = { 'I', 'N', 'F', 'O', ':', 'O', 'p', 'e', 'n', 'M', ('0' + ((_OPENMP/10)%10)), ('0' + ((_OPENMP/1)%10)), ']', '\\0' }; -int main() +int main(void) { puts(ompver_str); return 0; |