Explorar o código

CheckTypeSize: Fix with clang '-Werror,-Wmissing-variable-declarations'

Resolve issue building with missing variable declarations, error:

```
/src/cmake_clang/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_LONG.c:24:6: error: no previous extern declaration for non-static variable 'info_size' [-Werror,-Wmissing-variable-declarations]
char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
     ^
1 error generated.
```
Campbell Barton %!s(int64=6) %!d(string=hai) anos
pai
achega
0adb0e0178
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Modules/CheckTypeSize.c.in

+ 1 - 1
Modules/CheckTypeSize.c.in

@@ -18,7 +18,7 @@
 #endif
 
 #define SIZE (sizeof(@type@))
-char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
+static char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
   ('0' + ((SIZE / 10000)%10)),
   ('0' + ((SIZE / 1000)%10)),
   ('0' + ((SIZE / 100)%10)),