diff options
author | bunnei <bunneidev@gmail.com> | 2019-04-17 04:11:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-17 04:11:04 +0200 |
commit | 382fbbb1984e4965ac95921790effa5fd971a8db (patch) | |
tree | 7138597bba968968831339cd518012612e27c32c | |
parent | Merge pull request #2382 from lioncash/table (diff) | |
parent | common/{lz4_compression, zstd_compression}: Add missing header guards (diff) | |
download | yuzu-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 |
-rw-r--r-- | src/common/lz4_compression.h | 2 | ||||
-rw-r--r-- | src/common/zstd_compression.h | 2 |
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" |