Browse Source

no need to strip accumulator twice

master
madscientist 3 years ago
parent
commit
06348b8104
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      mishmash.cpp

+ 1
- 1
mishmash.cpp View File

@@ -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 {

Loading…
Cancel
Save