Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/json/allocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
#include <cstring>
#include <memory>

#pragma pack(push, 8)
#pragma pack(push)
#pragma pack()

namespace Json {
template <typename T> class SecureAllocator {
Expand Down
3 changes: 2 additions & 1 deletion include/json/json_features.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
#include "forwards.h"
#endif // if !defined(JSON_IS_AMALGAMATION)

#pragma pack(push, 8)
#pragma pack(push)
#pragma pack()

namespace Json {

Expand Down
3 changes: 2 additions & 1 deletion include/json/reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
#pragma warning(disable : 4251)
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)

#pragma pack(push, 8)
#pragma pack(push)
#pragma pack()

namespace Json {

Expand Down
3 changes: 2 additions & 1 deletion include/json/value.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
#pragma warning(disable : 4251 4275)
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)

#pragma pack(push, 8)
#pragma pack(push)
#pragma pack()

/** \brief JSON (JavaScript Object Notation).
*/
Expand Down
3 changes: 2 additions & 1 deletion include/json/writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
#pragma warning(disable : 4251)
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)

#pragma pack(push, 8)
#pragma pack(push)
#pragma pack()

namespace Json {

Expand Down