diff options
| author | 2019-04-16 22:11:04 -0400 | |
|---|---|---|
| committer | 2019-04-16 22:11:04 -0400 | |
| 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.gz yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.tar.xz yuzu-382fbbb1984e4965ac95921790effa5fd971a8db.zip | |
Merge pull request #2401 from lioncash/guard
common/{lz4_compression, zstd_compression}: Add missing header guards
| -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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #pragma once | ||
| 6 | |||
| 5 | #include <vector> | 7 | #include <vector> |
| 6 | 8 | ||
| 7 | #include "common/common_types.h" | 9 | #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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #pragma once | ||
| 6 | |||
| 5 | #include <vector> | 7 | #include <vector> |
| 6 | 8 | ||
| 7 | #include "common/common_types.h" | 9 | #include "common/common_types.h" |