Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
madscientist
/
CodeDweller
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
2
Peticiones pull
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
no need to strip accumulator twice
master
madscientist
hace 5 años
padre
57459a5d9a
commit
06348b8104
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
1
1
mishmash.cpp
+ 1
- 1
mishmash.cpp
Ver fichero
@@ -57,7 +57,7 @@ namespace codedweller {
accumulator += accumulator >> 32;
accumulator &= 0x00000fffffffffff;
}
return
accumulator & 0x00000000ffffffff
;
return
static_cast<uint32_t>(accumulator)
;
}
uint32_t mishmash(const std::string& s) noexcept {
Escribir
Vista previa
Cargando…
Cancelar
Guardar