summaryrefslogtreecommitdiff
path: root/src/common/cpu_detect_generic.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-07-21 22:54:38 -0400
committerGravatar bunnei2015-08-15 17:33:46 -0400
commitd67e2f78b77c0739caa8c6a915685aa8961a519c (patch)
tree6973754fc51ceb01efecd8618150084fd0608487 /src/common/cpu_detect_generic.cpp
parentCommon: Ported over boilerplate x86 JIT code from Dolphin/PPSSPP. (diff)
downloadyuzu-d67e2f78b77c0739caa8c6a915685aa8961a519c.tar.gz
yuzu-d67e2f78b77c0739caa8c6a915685aa8961a519c.tar.xz
yuzu-d67e2f78b77c0739caa8c6a915685aa8961a519c.zip
Common: Added MurmurHash3 hash function for general-purpose use.
Diffstat (limited to '')
-rw-r--r--src/common/cpu_detect_generic.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/cpu_detect_generic.cpp b/src/common/cpu_detect_generic.cpp
index b99c22af8..ccec324d9 100644
--- a/src/common/cpu_detect_generic.cpp
+++ b/src/common/cpu_detect_generic.cpp
@@ -3,12 +3,14 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "cpu_detect.h" 5#include "cpu_detect.h"
6#include "hash.h"
6 7
7namespace Common { 8namespace Common {
8 9
9CPUInfo cpu_info; 10CPUInfo cpu_info;
10 11
11CPUInfo::CPUInfo() { } 12CPUInfo::CPUInfo() {
13}
12 14
13std::string CPUInfo::Summarize() { 15std::string CPUInfo::Summarize() {
14 return "Generic"; 16 return "Generic";