From e052c727b24461cb8843d6173cbc8727327c20b4 Mon Sep 17 00:00:00 2001 From: "Philipp A. Hartmann" Date: Tue, 16 Sep 2014 10:06:02 +0200 Subject: [PATCH] GenericValue: drop forced packing pragma --- include/rapidjson/document.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/rapidjson/document.h b/include/rapidjson/document.h index 310fc71..abac0c2 100644 --- a/include/rapidjson/document.h +++ b/include/rapidjson/document.h @@ -413,7 +413,6 @@ template struct IsGenericValue : IsGenericValueImpl::Type {}; \tparam Encoding Encoding of the value. (Even non-string values need to have the same encoding in a document) \tparam Allocator Allocator type for allocating memory of object, array and string. */ -#pragma pack (push, 4) template > class GenericValue { public: @@ -1590,7 +1589,6 @@ private: Data data_; unsigned flags_; }; -#pragma pack (pop) //! GenericValue with UTF8 encoding typedef GenericValue > Value;