Commit b9d616c2 authored by Alexey Botchkov's avatar Alexey Botchkov

MDEV-7435 Windows debug: Run-Time Check Failure #3 - The variable 'unused' is...

MDEV-7435 Windows debug: Run-Time Check Failure #3 - The variable 'unused' is being used without being initialized.
Fixed as it's done in 10.0.
parent 5c6eb522
......@@ -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>
......
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