diff options
author | bunnei <bunneidev@gmail.com> | 2015-07-21 22:54:38 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-15 17:33:46 -0400 |
commit | d67e2f78b77c0739caa8c6a915685aa8961a519c (patch) | |
tree | 6973754fc51ceb01efecd8618150084fd0608487 /src/common/cpu_detect_generic.cpp | |
parent | ddbeebb887cff61b087a48738650832bc62c9e83 (diff) |
Common: Added MurmurHash3 hash function for general-purpose use.
Diffstat (limited to 'src/common/cpu_detect_generic.cpp')
-rw-r--r-- | src/common/cpu_detect_generic.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/cpu_detect_generic.cpp b/src/common/cpu_detect_generic.cpp index b99c22af8d..ccec324d9c 100644 --- a/src/common/cpu_detect_generic.cpp +++ b/src/common/cpu_detect_generic.cpp @@ -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"; |