diff options
| author | Jason Evans <jasone@canonware.com> | 2014-12-06 01:49:47 (GMT) |
|---|---|---|
| committer | Jason Evans <jasone@canonware.com> | 2014-12-06 01:49:47 (GMT) |
| commit | a18c2b1f152b4334474ed32fc46d762d4fa54c2b (patch) | |
| tree | 9753f53f4ccedef9ca69a131e6177cab7faf1ae1 /include/jemalloc | |
| parent | 1036ddbf11b7e9ec566b92b3dd50e105fc5f6932 (diff) | |
| download | jemalloc-a18c2b1f152b4334474ed32fc46d762d4fa54c2b.zip jemalloc-a18c2b1f152b4334474ed32fc46d762d4fa54c2b.tar.gz jemalloc-a18c2b1f152b4334474ed32fc46d762d4fa54c2b.tar.bz2 | |
Style fixes.
Diffstat (limited to 'include/jemalloc')
| -rw-r--r-- | include/jemalloc/internal/atomic.h | 4 |
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) { |
