Merge pull request #747 from zltl:patch-1

PiperOrigin-RevId: 420778907
This commit is contained in:
Victor Costan 2022-01-10 17:55:39 +00:00
commit ec4e3a5cb3

View File

@ -54,7 +54,7 @@ struct LRUHandle {
char key_data[1]; // Beginning of key char key_data[1]; // Beginning of key
Slice key() const { 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. // empty list. List heads never have meaningful keys.
assert(next != this); assert(next != this);