summaryrefslogtreecommitdiff
path: root/src/common/lz4_compression.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2019-04-03 22:02:18 -0400
committerGravatar Lioncash2019-04-03 22:07:04 -0400
commit0e2f617abcf0d633db137fe1466ddb4f17b88236 (patch)
tree5d2a657ebb9c72a96b46456c4b35cd76a18ee941 /src/common/lz4_compression.cpp
parentMerge pull request #2328 from lioncash/transfer (diff)
downloadyuzu-0e2f617abcf0d633db137fe1466ddb4f17b88236.tar.gz
yuzu-0e2f617abcf0d633db137fe1466ddb4f17b88236.tar.xz
yuzu-0e2f617abcf0d633db137fe1466ddb4f17b88236.zip
common/lz4_compression: Remove #pragma once directive from the cpp file
Introduced within 798d76f4c7018174e58702fb06a042dc8c84f0be, this only really has an effect within header files. Silences a -Wpragma-once-outside-header warning with clang.
Diffstat (limited to '')
-rw-r--r--src/common/lz4_compression.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/lz4_compression.cpp b/src/common/lz4_compression.cpp
index dc9b4a916..ade6759bb 100644
--- a/src/common/lz4_compression.cpp
+++ b/src/common/lz4_compression.cpp
@@ -2,8 +2,6 @@
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
7#include <algorithm> 5#include <algorithm>
8#include <lz4hc.h> 6#include <lz4hc.h>
9 7