aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Common.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-04-20 01:54:18 +0200
committerShauren <shauren.trinity@gmail.com>2015-04-20 01:54:18 +0200
commit4c7c2abf03b692e67a89d2ba0856aec1553c8ae1 (patch)
treeaca710086e2f8a2d58fb3e4cc0202582722232c1 /src/server/shared/Common.h
parent9172584ef1a81ee995aa736e66256c3b7582d2ff (diff)
Core/Misc: Removed gcc specific packing pragma syntax - only unsupported (now) versions required it
Diffstat (limited to 'src/server/shared/Common.h')
-rw-r--r--src/server/shared/Common.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/server/shared/Common.h b/src/server/shared/Common.h
index 11c9ad3b27f..8a1ccf6029a 100644
--- a/src/server/shared/Common.h
+++ b/src/server/shared/Common.h
@@ -133,22 +133,14 @@ LocaleConstant GetLocaleByName(const std::string& name);
typedef std::vector<std::string> StringVector;
-#if defined(__GNUC__)
-#pragma pack(1)
-#else
#pragma pack(push, 1)
-#endif
struct LocalizedString
{
char const* Str[TOTAL_LOCALES];
};
-#if defined(__GNUC__)
-#pragma pack()
-#else
#pragma pack(pop)
-#endif
// we always use stdlibc++ std::max/std::min, undefine some not C++ standard defines (Win API and some other platforms)
#ifdef max