diff options
Diffstat (limited to 'Utilities/cmjsoncpp/include/json/features.h')
-rw-r--r-- | Utilities/cmjsoncpp/include/json/features.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Utilities/cmjsoncpp/include/json/features.h b/Utilities/cmjsoncpp/include/json/features.h index 1bb7bb6..365abb3 100644 --- a/Utilities/cmjsoncpp/include/json/features.h +++ b/Utilities/cmjsoncpp/include/json/features.h @@ -1,4 +1,4 @@ -// Copyright 2007-2010 Baptiste Lepilleur +// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE @@ -10,6 +10,10 @@ #include "forwards.h" #endif // if !defined(JSON_IS_AMALGAMATION) +#if !defined(__SUNPRO_CC) +#pragma pack(push, 8) +#endif + namespace Json { /** \brief Configuration passed to reader and writer. @@ -54,4 +58,8 @@ public: } // namespace Json +#if !defined(__SUNPRO_CC) +#pragma pack(pop) +#endif + #endif // CPPTL_JSON_FEATURES_H_INCLUDED |