Commit 257fd9d3 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

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
parent 55597a48
......@@ -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)
......
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