aboutsummaryrefslogtreecommitdiff
path: root/include/jemalloc/internal/atomic.h
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2014-12-05 17:49:47 -0800
committerJason Evans <jasone@canonware.com>2014-12-05 17:49:47 -0800
commita18c2b1f152b4334474ed32fc46d762d4fa54c2b (patch)
tree9753f53f4ccedef9ca69a131e6177cab7faf1ae1 /include/jemalloc/internal/atomic.h
parent1036ddbf11b7e9ec566b92b3dd50e105fc5f6932 (diff)
downloadjemalloc-a18c2b1f152b4334474ed32fc46d762d4fa54c2b.tar.gz
Style fixes.
Diffstat (limited to 'include/jemalloc/internal/atomic.h')
-rw-r--r--include/jemalloc/internal/atomic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/atomic.h b/include/jemalloc/internal/atomic.h
index a048815..8b743b8 100644
--- a/include/jemalloc/internal/atomic.h
+++ b/include/jemalloc/internal/atomic.h
@@ -58,7 +58,7 @@ atomic_sub_uint64(uint64_t *p, uint64_t x)
return (__sync_sub_and_fetch(p, x));
}
-#elif (defined(_MSC_VER))
+# elif (defined(_MSC_VER))
JEMALLOC_INLINE uint64_t
atomic_add_uint64(uint64_t *p, uint64_t x)
{
@@ -72,7 +72,7 @@ atomic_sub_uint64(uint64_t *p, uint64_t x)
return (InterlockedExchangeAdd64(p, -((int64_t)x)) - x);
}
-#elif (defined(JEMALLOC_OSATOMIC))
+# elif (defined(JEMALLOC_OSATOMIC))
JEMALLOC_INLINE uint64_t
atomic_add_uint64(uint64_t *p, uint64_t x)
{