Skip to content
Permalink
Browse files
compiler warnings
  • Loading branch information
vuvova committed Aug 12, 2018
1 parent 97b563b commit 456517b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -5,7 +5,7 @@ IF(WIN32)
RETURN()
ENDIF()

MY_CHECK_AND_SET_COMPILER_FLAG("-Wdeprecated-declarations")
MY_CHECK_AND_SET_COMPILER_FLAG("-Wno-deprecated-declarations")

INCLUDE_DIRECTORIES(libhsclient)

@@ -2657,7 +2657,7 @@ fts_optimize_new_table(
empty_slot = i;
} else if (slot->table == table) {
/* Already exists in our optimize queue. */
ut_ad(slot->table_id = table->id);
ut_ad(slot->table_id == table->id);
return(FALSE);
}
}

0 comments on commit 456517b

Please sign in to comment.