From: Jérémie Galarneau Date: Wed, 29 Mar 2023 20:18:36 +0000 (-0400) Subject: Fix: file-descriptor: missing include guards X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=238fab718442f811eeba699216ca8e9d61cbadd0 Fix: file-descriptor: missing include guards Signed-off-by: Jérémie Galarneau Change-Id: I05551e67a28e75b353f22e8df9f2ecde8dad5f5b --- 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 */