Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
Apua
Kirjaudu sisään
madscientist
/
CodeDweller
Tarkkaile
1
Äänestä
0
Fork
0
Koodi
Ongelmat
2
Pull-pyynnöt
0
Julkaisut
0
Wiki
Activity
Selaa lähdekoodia
no need to strip accumulator twice
master
madscientist
5 vuotta sitten
vanhempi
57459a5d9a
commit
06348b8104
1 muutettua tiedostoa
jossa
1 lisäystä
ja
1 poistoa
Jaettu näkymä
Näytä diff tilastot
1
1
mishmash.cpp
+ 1
- 1
mishmash.cpp
Näytä tiedosto
@@ -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…
Peruuta
Tallenna