From 257fd9d3d9b5755128e0a226c26e5b5a0464b9ca Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Mon, 30 Jul 2012 20:13:23 +0200 Subject: 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 --- include/atomic/nolock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/atomic/nolock.h b/include/atomic/nolock.h index 1da184158ab..56f37644f96 100644 --- a/include/atomic/nolock.h +++ b/include/atomic/nolock.h @@ -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) -- cgit v1.2.1