MDEV-7435 Windows debug: Run-Time Check Failure - The variable 'unused' is being used without being initialized.

Fixed as it's done in 10.0.
This commit is contained in:
Alexey Botchkov 2015-02-06 15:49:45 +04:00
parent 5c6eb5222e
commit b9d616c243

View file

@ -28,6 +28,11 @@
There is no reference counting and no unloading either.
*/
#if _MSC_VER
/* Silence warnings about variable 'unused' being used. */
#define FORCE_INIT_OF_VARS 1
#endif
#include <my_global.h>
#include "mysql.h"
#include <my_sys.h>