Add pragma pack directive

Related to https://github.com/open-source-parsers/jsoncpp/issues/458
diff --git a/include/json/allocator.h b/include/json/allocator.h
index 9d8b9fc..2492758 100644
--- a/include/json/allocator.h
+++ b/include/json/allocator.h
@@ -9,6 +9,8 @@
 #include <cstring>
 #include <memory>
 
+#pragma pack(push, 8)
+
 namespace Json {
 template<typename T>
 class SecureAllocator {
@@ -91,4 +93,6 @@
 
 } //namespace Json
 
+#pragma pack(pop)
+
 #endif // CPPTL_JSON_ALLOCATOR_H_INCLUDED