From 0ddc329b2585584806951705319461aa05ef9d49 Mon Sep 17 00:00:00 2001 From: Matvii Zorin Date: Mon, 27 Jul 2020 18:29:15 +0300 Subject: [PATCH] drm_hwcomposer: Add include guard into drmhwctwo.h Include guard was missed for the file. Signed-off-by: Matvii Zorin --- include/drmhwctwo.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/drmhwctwo.h b/include/drmhwctwo.h index 1f226bc..62ee85a 100644 --- a/include/drmhwctwo.h +++ b/include/drmhwctwo.h @@ -14,6 +14,9 @@ * limitations under the License. */ +#ifndef ANDROID_DRM_HWC_TWO_H_ +#define ANDROID_DRM_HWC_TWO_H_ + #include "drmdisplaycompositor.h" #include "drmhwcomposer.h" #include "platform.h" @@ -370,3 +373,5 @@ class DrmHwcTwo : public hwc2_device_t { std::string mDumpString; }; } // namespace android + +#endif -- 2.11.0