summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-08-24 15:47:53 -0400
committerAlex Gorrod <alexg@wiredtiger.com>2015-09-18 14:49:50 +1000
commit3489b0bec18adcf574b274dad4b390182deb7c13 (patch)
treec9e307eea3440e6dac5f7fe03762f2732e059b27
parent119038d87461bde02631f577721fbfc1ec961c82 (diff)
downloadmongo-3489b0bec18adcf574b274dad4b390182deb7c13.tar.gz
WT-2052: Fix the atomic size_t type functions for MSVC.
-rw-r--r--src/include/msvc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/msvc.h b/src/include/msvc.h
index d9f6ab49b3e..f4d8ba52fc1 100644
--- a/src/include/msvc.h
+++ b/src/include/msvc.h
@@ -69,7 +69,7 @@ WT_ATOMIC_FUNC(64, uint64_t, uint64_t, 64, __int64)
WT_ATOMIC_FUNC(v64, uint64_t, volatile uint64_t, 64, __int64)
WT_ATOMIC_FUNC(i64, int64_t, int64_t, 64, __int64)
WT_ATOMIC_FUNC(iv64, int64_t, volatile int64_t, 64, __int64)
-WT_ATOMIC_FUNC(size, size_t, size_t)
+WT_ATOMIC_FUNC(size, size_t, size_t, 64, __int64)
/*
* __wt_atomic_cas_ptr --