diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-02-02 16:35:56 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-02-02 16:35:56 -0500 |
commit | 7ce67efd6f3fe4b2ac655c6e0e10e420f786b110 (patch) | |
tree | c027fad9be71ab4de4000d4b7bcf2511f735ec78 /src/include/msvc.h | |
parent | 57c7bb8d5890066acc599b77066822abe69e85cc (diff) | |
download | mongo-7ce67efd6f3fe4b2ac655c6e0e10e420f786b110.tar.gz |
Update lint's macro definitions, whitespace cleanup.
Diffstat (limited to 'src/include/msvc.h')
-rw-r--r-- | src/include/msvc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/msvc.h b/src/include/msvc.h index 159e72e65af..3ec74b2d629 100644 --- a/src/include/msvc.h +++ b/src/include/msvc.h @@ -18,12 +18,12 @@ */ #define WT_COMPILER_TYPE_ALIGN(x) __declspec(align(x)) -#define WT_PACKED_STRUCT_BEGIN(name) \ - __pragma(pack(push,1)) \ +#define WT_PACKED_STRUCT_BEGIN(name) \ + __pragma(pack(push,1)) \ struct name { -#define WT_PACKED_STRUCT_END \ - }; \ +#define WT_PACKED_STRUCT_END \ + }; \ __pragma(pack(pop)) #define WT_GCC_FUNC_ATTRIBUTE(x) |