diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-05-16 15:22:13 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-05-16 15:39:23 -0400 |
| commit | 011ee110bc2bd4783501a3a978e3206a1960aa79 (patch) | |
| tree | 576388d0d149bc8854b0100f26961913c5acaec4 /Source/Core/Common/Hash.cpp | |
| parent | b203024a26ac31b9e1a7f16764c75915b29d66b5 (diff) | |
Common/Hash: Namespace code under the Common namespace
Brings more common code under the Common namespace.
Diffstat (limited to 'Source/Core/Common/Hash.cpp')
| -rw-r--r-- | Source/Core/Common/Hash.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp index 2678ab89bc..193ff5257b 100644 --- a/Source/Core/Common/Hash.cpp +++ b/Source/Core/Common/Hash.cpp @@ -15,6 +15,8 @@ #include <arm_acle.h> #endif +namespace Common +{ static u64 (*ptrHashFunction)(const u8* src, u32 len, u32 samples) = nullptr; // uint32_t @@ -524,3 +526,4 @@ void SetHash64Function() ptrHashFunction = &GetMurmurHash3; } } +} // namespace Common |
