// Copyright (c) 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/http2/hpack/huffman/huffman_spec_tables.h" namespace http2 { // clang-format off // static const uint8_t HuffmanSpecTables::kCodeLengths[] = …; // The encoding of each symbol, left justified (as printed), which means that // the first bit of the encoding is the high-order bit of the uint32. // static const uint32_t HuffmanSpecTables::kLeftCodes[] = …; // static const uint32_t HuffmanSpecTables::kRightCodes[] = …; // clang-format off } // namespace http2