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 'CPP/7zip/Compress/Branch/x86_2.cpp')
-rwxr-xr-xCPP/7zip/Compress/Branch/x86_2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/CPP/7zip/Compress/Branch/x86_2.cpp b/CPP/7zip/Compress/Branch/x86_2.cpp
index 6f3a2f3c..178587b6 100755
--- a/CPP/7zip/Compress/Branch/x86_2.cpp
+++ b/CPP/7zip/Compress/Branch/x86_2.cpp
@@ -8,8 +8,6 @@ extern "C"
#include "../../../../C/Alloc.h"
}
-static const int kBufferSize = 1 << 17;
-
inline bool IsJcc(Byte b0, Byte b1)
{
return (b0 == 0x0F && (b1 & 0xF0) == 0x80);
@@ -17,6 +15,8 @@ inline bool IsJcc(Byte b0, Byte b1)
#ifndef EXTRACT_ONLY
+static const int kBufferSize = 1 << 17;
+
static bool inline Test86MSByte(Byte b)
{
return (b == 0 || b == 0xFF);