summaryrefslogtreecommitdiff
path: root/src/common/lz4_compression.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-04-03 22:02:18 -0400
committerLioncash <mathew1800@gmail.com>2019-04-03 22:07:04 -0400
commit0e2f617abcf0d633db137fe1466ddb4f17b88236 (patch)
tree5d2a657ebb9c72a96b46456c4b35cd76a18ee941 /src/common/lz4_compression.cpp
parentacde8d3f687856d05e3b4371498f8c622ba437ca (diff)
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 'src/common/lz4_compression.cpp')
-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 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#pragma once
-
#include <algorithm>
#include <lz4hc.h>