From 0e2f617abcf0d633db137fe1466ddb4f17b88236 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Wed, 3 Apr 2019 22:02:18 -0400
Subject: [PATCH] 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.
---
 src/common/lz4_compression.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/common/lz4_compression.cpp b/src/common/lz4_compression.cpp
index dc9b4a9164..ade6759bb2 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>