Commit b77557a3 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

closes #6042 add -Wno-error=address-of-array-temporary

git-svn-id: file:///svn/toku/tokudb@53419 c7de825b-a66e-492c-adef-691d508d4ae1
parent 3ab7e8ce
......@@ -86,6 +86,7 @@ set_cflags_if_supported(
-Wlogical-op
-Wmissing-format-attribute
-Wno-error=missing-format-attribute
-Wno-error=address-of-array-temporary
-fno-rtti
-fno-exceptions
)
......
......@@ -566,7 +566,7 @@ static int
update_estimated_rows(DB_INDEXER *indexer) {
DBT key; toku_init_dbt(&key);
DBT data; toku_init_dbt(&data);
DBC* crsr;
DBC* crsr = NULL;
DB_TXN* txn = NULL;
uint64_t less, equal, greater;
int is_exact;
......
......@@ -506,7 +506,7 @@ error:
int apply_commandline_options()
{
int r;
int r = -1;
unsigned idx;
char* field;
char* value = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment