aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-04-15 13:00:04 -0400
committerLioncash <mathew1800@gmail.com>2019-04-15 13:00:08 -0400
commit4620ed47a3ae61bb795091a31b4c5731e2e60b87 (patch)
treedbf9040ef294cc694cda3c81124d26e1b4eda8f8
parent1f4dfb3998fc1ef91132a79bd3a5153a56e03eca (diff)
common/{lz4_compression, zstd_compression}: Add missing header guards
These two files were missing the #pragma once directive.
-rw-r--r--src/common/lz4_compression.h2
-rw-r--r--src/common/zstd_compression.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/common/lz4_compression.h b/src/common/lz4_compression.h
index fe2231a6c9..4c16f6e030 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 e0a64b0355..e9de941c80 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"