Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
madscientist
/
CodeDweller
Segui
1
Vota
0
Forka
0
Codice
Problemi
2
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
no need to strip accumulator twice
master
madscientist
5 anni fa
parent
57459a5d9a
commit
06348b8104
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
1
mishmash.cpp
+ 1
- 1
mishmash.cpp
Vedi File
@@ -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 {
Write
Preview
Loading…
Annulla
Salva