From 011ee110bc2bd4783501a3a978e3206a1960aa79 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 16 May 2018 15:22:13 -0400 Subject: Common/Hash: Namespace code under the Common namespace Brings more common code under the Common namespace. --- Source/Core/Common/Hash.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Source/Core/Common/Hash.cpp') 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 #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 -- cgit v1.2.3