Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 6.06 KB | None | 0 0
  1. ./deps/icu-small/source/i18n/collationweights.cpp: In member function 'UBool icu_61::CollationWeights::allocWeights(uint32_t, uint32_t, int32_t)':
  2. ../deps/icu-small/source/i18n/collationweights.cpp:394:39: warning: assuming signed overflow does not occur when assuming that (X + c) < X is always false [-Wstrict-overflow]                                      
  3.      for(int32_t i = 0; i < rangeCount && ranges[i].length <= (minLength + 1); ++i) {
  4.  
  5.  
  6. ../deps/icu-small/source/i18n/msgfmt.cpp: In function 'void icu_61::MessageFormat::cacheExplicitFormats(UErrorCode&)':
  7. ../deps/icu-small/source/i18n/msgfmt.cpp:1667:61: warning: 'formattableType' may be used uninitialized in this function [-Wmaybe-uninitialized]                                                                    
  8.              if (argTypes[argNumber] != Formattable::kObject && argTypes[argNumber] != formattableType) {                                                                                                          
  9.                  
  10.  
  11. ../deps/openssl/openssl/crypto/cast/c_enc.c: In function 'CAST_encrypt':
  12. ../deps/openssl/openssl/crypto/cast/c_enc.c:65:5: warning: 'register' is not at beginning of declaration [-Wold-style-declaration]                                                                                  
  13.      const register CAST_LONG *k;                                                                                                                                                                                  
  14.      ^~~~~                                                                                                                                                                                                          
  15. ../deps/openssl/openssl/crypto/cast/c_enc.c: In function 'CAST_decrypt':                                                                                                                                            
  16. ../deps/openssl/openssl/crypto/cast/c_enc.c:97:5: warning: 'register' is not at beginning of declaration [-Wold-style-declaration]                                                                                  
  17.      const register CAST_LONG *k;                                                                                                                                                                                  
  18.      ^~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  19.  
  20.  
  21. ../deps/nghttp2/lib/nghttp2_helper.c: In function 'nghttp2_put_uint16be':
  22. ../deps/nghttp2/lib/nghttp2_helper.c:33:16: warning: implicit declaration of function 'htons' [-Wimplicit-function-declaration]                                                                                    
  23.    uint16_t x = htons(n);                                                                                                                                                                                          
  24.                 ^~~~~                                                                                                                                                                                              
  25. ../deps/nghttp2/lib/nghttp2_helper.c: In function 'nghttp2_put_uint32be':                                                                                                                                          
  26. ../deps/nghttp2/lib/nghttp2_helper.c:38:16: warning: implicit declaration of function 'htonl' [-Wimplicit-function-declaration]                                                                                    
  27.    uint32_t x = htonl(n);                                                                                                                                                                                          
  28.                 ^~~~~                                                                                                                                                                                              
  29. ../deps/nghttp2/lib/nghttp2_helper.c: In function 'nghttp2_get_uint16':                                                                                                                                            
  30. ../deps/nghttp2/lib/nghttp2_helper.c:45:10: warning: implicit declaration of function 'ntohs' [-Wimplicit-function-declaration]                                                                                    
  31.    return ntohs(n);                                                                                                                                                                                                
  32.           ^~~~~                                                                                                                                                                                                    
  33. ../deps/nghttp2/lib/nghttp2_helper.c: In function 'nghttp2_get_uint32':                                                                                                                                            
  34. ../deps/nghttp2/lib/nghttp2_helper.c:51:10: warning: implicit declaration of function 'ntohl' [-Wimplicit-function-declaration]                                                                                    
  35.    return ntohl(n);                                                                                                                                                                                                
  36.           ^~~~~      
  37.  
  38. ../deps/icu-small/source/common/ubiditransform.cpp: In function 'void resolveBaseDirection(const UChar*, uint32_t, UBiDiLevel*, UBiDiLevel*)':
  39. ../deps/icu-small/source/common/ubiditransform.cpp:397:48: warning: enumeral and non-enumeral type in conditional expression [-Wextra]                                                                              
  40.              *pInLevel = level != UBIDI_NEUTRAL ? level                                                                                                                                                            
  41.                                                 ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement