MDEV-417 - fix typo that prevented use of atomic instructions on Windows

use correct macro for Microsoft compiler. It is _MSC_VER , not _MSV_VER
This commit is contained in:
Vladislav Vaintroub 2012-07-30 20:13:23 +02:00
commit 257fd9d3d9

View file

@ -36,7 +36,7 @@
choose the Solaris implementation on Solaris (mainly for SunStudio
compilers).
*/
# if defined(_MSV_VER)
# if defined(_MSC_VER)
# include "generic-msvc.h"
# elif __GNUC__
# if defined(HAVE_SOLARIS_ATOMIC)