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/Archive/Lzh/LzhCRC.h')
-rwxr-xr-xCPP/7zip/Archive/Lzh/LzhCRC.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CPP/7zip/Archive/Lzh/LzhCRC.h b/CPP/7zip/Archive/Lzh/LzhCRC.h
index e49d649c..be2a4569 100755
--- a/CPP/7zip/Archive/Lzh/LzhCRC.h
+++ b/CPP/7zip/Archive/Lzh/LzhCRC.h
@@ -19,7 +19,7 @@ public:
CCRC(): _value(0){};
void Init() { _value = 0; }
void Update(const void *data, size_t size);
- UInt16 GetDigest() const { return _value; }
+ UInt16 GetDigest() const { return _value; }
};
}}