Common: Added MurmurHash3 hash function for general-purpose use.

This commit is contained in:
bunnei 2015-07-21 22:54:38 -04:00
parent 3d35d53b8d
commit be08c22685
6 changed files with 159 additions and 3 deletions

View file

@ -3,12 +3,14 @@
// Refer to the license.txt file included.
#include "cpu_detect.h"
#include "hash.h"
namespace Common {
CPUInfo cpu_info;
CPUInfo::CPUInfo() { }
CPUInfo::CPUInfo() {
}
std::string CPUInfo::Summarize() {
return "Generic";