summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-17 04:11:04 +0200
committerGitHub <noreply@github.com>2019-04-17 04:11:04 +0200
commit382fbbb1984e4965ac95921790effa5fd971a8db (patch)
tree7138597bba968968831339cd518012612e27c32c /src
parentMerge pull request #2382 from lioncash/table (diff)
parentcommon/{lz4_compression, zstd_compression}: Add missing header guards (diff)
downloadyuzu-382fbbb1984e4965ac95921790effa5fd971a8db.tar
yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.tar.gz
yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.tar.bz2
yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.tar.lz
yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.tar.xz
yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.tar.zst
yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.zip
Diffstat (limited to 'src')
-rw-r--r--src/common/lz4_compression.h2
-rw-r--r--src/common/zstd_compression.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/common/lz4_compression.h b/src/common/lz4_compression.h
index fe2231a6c..4c16f6e03 100644
--- a/src/common/lz4_compression.h
+++ b/src/common/lz4_compression.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
#include <vector>
#include "common/common_types.h"
diff --git a/src/common/zstd_compression.h b/src/common/zstd_compression.h
index e0a64b035..e9de941c8 100644
--- a/src/common/zstd_compression.h
+++ b/src/common/zstd_compression.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
#include <vector>
#include "common/common_types.h"