Browse Source

FindOpenMP: Fix warnings with -Wstrict-prototypes

With -Wstrict-prototype -Werror, the check would fail
pull/324/head
Ivan Pozdeev 7 years ago
committed by Brad King
parent
commit
db0445f0c8
  1. 4
      Modules/FindOpenMP.cmake

4
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;

Loading…
Cancel
Save