Explorar el Código

fix typo in comment of LRUHandle

LRUHandle has no member "next_", fix it to "next" instead.
main
Liao Tonglang hace 5 años
cometido por GitHub
padre
commit
f2dae4e74a
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      util/cache.cc

+ 1
- 1
util/cache.cc Ver fichero

@ -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);

Cargando…
Cancelar
Guardar