type_info: remove non-UTF-8 characters (close #259)

This commit is contained in:
Michele Caini 2022-01-17 14:21:08 +01:00
parent 86fb93d0ef
commit fa83b0fb5e

View File

@ -18,7 +18,7 @@ namespace uvw {
namespace internal {
// FowlerNollVo hash function v. 1a - the good
// Fowler-Noll-Vo hash function v. 1a - the good
[[nodiscard]] static constexpr std::uint32_t fnv1a(const char *curr) noexcept {
constexpr std::uint32_t offset = 2166136261;
constexpr std::uint32_t prime = 16777619;