Add pragma pack directive

Related to https://github.com/open-source-parsers/jsoncpp/issues/458
This commit is contained in:
Sergiy80
2016-12-03 22:29:14 +02:00
parent a691cb19de
commit d6e666f573
5 changed files with 19 additions and 0 deletions

View File

@@ -9,6 +9,8 @@
#include <cstring>
#include <memory>
#pragma pack(push, 8)
namespace Json {
template<typename T>
class SecureAllocator {
@@ -91,4 +93,6 @@ bool operator!=(const SecureAllocator<T>&, const SecureAllocator<U>&) {
} //namespace Json
#pragma pack(pop)
#endif // CPPTL_JSON_ALLOCATOR_H_INCLUDED