このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
madscientist
/
CodeDweller
ウォッチ
1
スター
0
フォーク
0
コード
課題
2
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
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 {
書き込み
プレビュー
読み込み中…
キャンセル
保存