From: Matvii Zorin Date: Mon, 27 Jul 2020 15:29:15 +0000 (+0300) Subject: drm_hwcomposer: Add include guard into drmhwctwo.h X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0ddc329b2585584806951705319461aa05ef9d49;p=android-x86%2Fexternal-drm_hwcomposer.git drm_hwcomposer: Add include guard into drmhwctwo.h Include guard was missed for the file. Signed-off-by: Matvii Zorin --- 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