mirror of
https://github.com/google/brotli.git
synced 2024-11-21 19:20:09 +00:00
Merge pull request #376 from PiotrSikora/cpp_constants
Restore C++ constants in "brotli" namespace.
This commit is contained in:
commit
4a8bb6a2b8
@ -14,6 +14,11 @@
|
||||
|
||||
namespace brotli {
|
||||
|
||||
static const int kMinWindowBits = kBrotliMinWindowBits;
|
||||
static const int kMaxWindowBits = kBrotliMaxWindowBits;
|
||||
static const int kMinInputBlockBits = kBrotliMinInputBlockBits;
|
||||
static const int kMaxInputBlockBits = kBrotliMaxInputBlockBits;
|
||||
|
||||
struct BrotliParams {
|
||||
BrotliParams(void)
|
||||
: mode(MODE_GENERIC),
|
||||
|
Loading…
Reference in New Issue
Block a user