This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
madscientist
/
CodeDweller
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
2
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
no need to strip accumulator twice
master
madscientist
пре 5 година
родитељ
57459a5d9a
комит
06348b8104
1 измењених фајлова
са
1 додато
и
1 уклоњено
Подељен поглед
Покажи статистику Diff
1
1
mishmash.cpp
+ 1
- 1
mishmash.cpp
Прегледај датотеку
@@ -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…
Откажи
Сачувај