Ideally we would be able to hash some strings at compile time instead of runtime by making the relevant functions etc constexpr. However, because of this cast in Hash::MurmurHash64A
I have been unable to have this happen at compile time. I do not know if it is possible to work around this, but if we could that would be great.
Ideally we would be able to hash some strings at compile time instead of runtime by making the relevant functions etc
constexpr
. However, because of this cast inHash::MurmurHash64A
I have been unable to have this happen at compile time. I do not know if it is possible to work around this, but if we could that would be great.