summaryrefslogtreecommitdiff
path: root/src/common/hash.h
diff options
context:
space:
mode:
authorGravatar Kloen2017-01-28 15:30:18 +0100
committerGravatar Kloen2017-01-28 15:30:18 +0100
commit818b1730a9f4775e29c4d9470e1aa193a82a1c7d (patch)
treefba8646b5d7b703963a19bfb125530c31bc08b51 /src/common/hash.h
parentcommon: switch ComputeHash64 len param to size_t instead of int, fix warning ... (diff)
downloadyuzu-818b1730a9f4775e29c4d9470e1aa193a82a1c7d.tar.gz
yuzu-818b1730a9f4775e29c4d9470e1aa193a82a1c7d.tar.xz
yuzu-818b1730a9f4775e29c4d9470e1aa193a82a1c7d.zip
common: add <cstddef> to hash.h
Diffstat (limited to 'src/common/hash.h')
-rw-r--r--src/common/hash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/hash.h b/src/common/hash.h
index 188d1c555..ee2560dad 100644
--- a/src/common/hash.h
+++ b/src/common/hash.h
@@ -4,6 +4,7 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <cstddef>
7#include "common/common_types.h" 8#include "common/common_types.h"
8 9
9namespace Common { 10namespace Common {