Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
madscientist
/
CodeDweller
Observar
1
Favorito
0
Fork
0
Código
Issues
2
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
no need to strip accumulator twice
master
madscientist
5 anos atrás
pai
57459a5d9a
commit
06348b8104
1 arquivos alterados
com
1 adições
e
1 exclusões
Visão dividida
Mostrar estatísticas do Diff
1
1
mishmash.cpp
+ 1
- 1
mishmash.cpp
Ver arquivo
@@ -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 {
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar