diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-15 19:00:04 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-15 19:00:08 +0200 |
commit | 4620ed47a3ae61bb795091a31b4c5731e2e60b87 (patch) | |
tree | dbf9040ef294cc694cda3c81124d26e1b4eda8f8 /src/common | |
parent | Merge pull request #2378 from lioncash/ro (diff) | |
download | yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar.gz yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar.bz2 yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar.lz yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar.xz yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.tar.zst yuzu-4620ed47a3ae61bb795091a31b4c5731e2e60b87.zip |
Diffstat (limited to 'src/common')
-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" |