ソースを参照

no need to strip accumulator twice

master
madscientist 3年前
コミット
06348b8104
1個のファイルの変更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 {

読み込み中…
キャンセル
保存