diff options
| author | 2019-04-15 13:00:04 -0400 | |
|---|---|---|
| committer | 2019-04-15 13:00:08 -0400 | |
| commit | 4620ed47a3ae61bb795091a31b4c5731e2e60b87 (patch) | |
| tree | dbf9040ef294cc694cda3c81124d26e1b4eda8f8 /src/common/zstd_compression.h | |
| parent | Merge pull request #2378 from lioncash/ro (diff) | |
| download | yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar.gz yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar.xz yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.zip | |
common/{lz4_compression, zstd_compression}: Add missing header guards
These two files were missing the #pragma once directive.
Diffstat (limited to 'src/common/zstd_compression.h')
| -rw-r--r-- | src/common/zstd_compression.h | 2 |
1 files changed, 2 insertions, 0 deletions
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" |