From 238fab718442f811eeba699216ca8e9d61cbadd0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 29 Mar 2023 16:18:36 -0400 Subject: [PATCH] Fix: file-descriptor: missing include guards MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau Change-Id: I05551e67a28e75b353f22e8df9f2ecde8dad5f5b --- src/common/file-descriptor.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/common/file-descriptor.hpp b/src/common/file-descriptor.hpp index 0ddc2b91c..e8ddfe7a1 100644 --- a/src/common/file-descriptor.hpp +++ b/src/common/file-descriptor.hpp @@ -5,6 +5,9 @@ * */ +#ifndef LTTNG_FILE_DESCRIPTOR_HPP +#define LTTNG_FILE_DESCRIPTOR_HPP + #include #include @@ -78,3 +81,5 @@ private: }; } /* namespace lttng */ + +#endif /* LTTNG_FILE_DESCRIPTOR_HPP */ -- 2.34.1