ソースを参照

fix typo in comment of LRUHandle

LRUHandle has no member "next_", fix it to "next" instead.
main
Liao Tonglang 5年前
committed by GitHub
コミット
f2dae4e74a
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      util/cache.cc

+ 1
- 1
util/cache.cc ファイルの表示

@ -53,7 +53,7 @@ struct LRUHandle {
char key_data[1]; // Beginning of key
Slice key() const {
// next_ is only equal to this if the LRU handle is the list head of an
// next is only equal to this if the LRU handle is the list head of an
// empty list. List heads never have meaningful keys.
assert(next != this);

読み込み中…
キャンセル
保存