使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
madscientist
/
CodeDweller
关注
1
点赞
0
派生
0
代码
工单
2
合并请求
0
版本发布
0
百科
动态
浏览代码
no need to strip accumulator twice
master
madscientist
5 年前
父节点
57459a5d9a
当前提交
06348b8104
共有
1 个文件被更改
,包括
1 次插入
和
1 次删除
分列视图
显示文件统计
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 {
撰写
预览
正在加载...
取消
保存