Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/PPMD/PPMDType.h')
-rwxr-xr-x7zip/Compress/PPMD/PPMDType.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/7zip/Compress/PPMD/PPMDType.h b/7zip/Compress/PPMD/PPMDType.h
index 5a67ac84..5200fa54 100755
--- a/7zip/Compress/PPMD/PPMDType.h
+++ b/7zip/Compress/PPMD/PPMDType.h
@@ -13,12 +13,6 @@
const int kMaxOrderCompress = 32;
const int MAX_O = 255; /* maximum allowed model order */
-#if defined(__GNUC__)
-#define _PACK_ATTR __attribute__ ((packed))
-#else
-#define _PACK_ATTR
-#endif /* defined(__GNUC__) */
-
template <class T>
inline void _PPMD_SWAP(T& t1,T& t2) { T tmp = t1; t1 = t2; t2 = tmp; }