diff options
author | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-02-27 19:31:49 +0200 |
---|---|---|
committer | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-02-27 19:31:49 +0200 |
commit | 3956f5911e86bb9610f502832f5103530053e7ec (patch) | |
tree | d28a6d1f930596f828c5f26824d51b1c917abe91 /support-files | |
parent | 175507b766c471d7545165857debc0cd55d04422 (diff) | |
download | mariadb-git-3956f5911e86bb9610f502832f5103530053e7ec.tar.gz |
Remove compiler warnings
mysql-test/mysql-test-run.pl:
Fix warning when using --extern
sql/field.cc:
Fix wrong fix
sql/ha_ndbcluster.cc:
Better fixes to remove compiler warnings
sql/ha_ndbcluster_binlog.cc:
Better fixes to remove compiler warnings
sql/log.cc:
Fix compiler warnings
sql/sql_parse.cc:
Indentation fix
sql/sql_table.cc:
Indentation fixes
storage/myisammrg/ha_myisammrg.cc:
Fix compiler warnings
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp:
Fix compiler warnings
support-files/compiler_warnings.supp:
Suppress all 'safe' warnings, as detected by win64
win/README:
Fixed typo
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/compiler_warnings.supp | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/support-files/compiler_warnings.supp b/support-files/compiler_warnings.supp index 2f4dcddf737..f27b196aa1b 100644 --- a/support-files/compiler_warnings.supp +++ b/support-files/compiler_warnings.supp @@ -33,12 +33,18 @@ db_vrfy.c : .*comparison is always false due to limited range of data type.* # Ignore all conversion warnings on windows 64 # (Is safe as we are not yet supporting strings >= 2G) # -.* : conversion from '.*size_t' to .*int'.* .* : conversion from '__int64' to .*int'.* -.* : conversion from '__int64' to uint8'.* -.* : conversion from '__int64' to uint32'.* +.* : conversion from '__int64' to 'uint8'.* +.* : conversion from '__int64' to 'uint32'.* +.* : conversion from '__int64' to 'u.*long'.* +.* : conversion from '__int64' to 'long'.* +.* : conversion from '__int64' to 'off_t'.* +.* : conversion from '.*size_t' to .*int'.* .* : conversion from '.*size_t' to 'TaoCrypt::word32'.* .* : conversion from '.*size_t' to 'u.*long'.* +.* : conversion from '.*size_t' to 'uint32'.* +.* : conversion from '.*size_t' to 'off_t'.* +.* : conversion from '.*size_t' to 'size_s'.* # # The following should be fixed by the ndb team @@ -53,3 +59,8 @@ db_vrfy.c : .*comparison is always false due to limited range of data type.* listener.cc : .*conversion from 'SOCKET' to 'int'.* net_serv.cc : .*conversion from 'SOCKET' to 'int'.* mi_packrec.c : .*result of 32-bit shift implicitly converted to 64 bits.* : 567 + +# +# Wrong compiler warnings +# +.* : .*no matching operator delete found; memory will not be freed if initialization throws an exception.* |