X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=thirdparty%2Fsnappy%2Fsnappy.h;fp=thirdparty%2Fsnappy%2Fsnappy.h;h=8c2075fefa5d5835bbf4cb9510da85505a606410;hb=af0f4f9483fc9aef4d3af914d80d56b560272dcb;hp=8d6ef2294f55aadc92a60de8b2d9b11eed542498;hpb=df1a1816c13e6fcdf63a45c973f09f04af318073;p=apitrace diff --git a/thirdparty/snappy/snappy.h b/thirdparty/snappy/snappy.h index 8d6ef22..8c2075f 100644 --- a/thirdparty/snappy/snappy.h +++ b/thirdparty/snappy/snappy.h @@ -144,10 +144,10 @@ namespace snappy { // decompression code should not rely on this guarantee since older // compression code may not obey it. static const int kBlockLog = 15; - static const int kBlockSize = 1 << kBlockLog; + static const size_t kBlockSize = 1 << kBlockLog; static const int kMaxHashTableBits = 14; - static const int kMaxHashTableSize = 1 << kMaxHashTableBits; + static const size_t kMaxHashTableSize = 1 << kMaxHashTableBits; } // end namespace snappy