From 8e181a61f4ecbf4622f8ba809e98fcd1a441b7d8 Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Thu, 18 May 2017 14:57:32 +0200 Subject: [PATCH] Add missing header guard to mocksurface.h Change-Id: I353c8b67c0990ca6fc4d8168c09d2af8899ed081 Reviewed-by: Giulio Camuffo --- tests/auto/wayland/client/mocksurface.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/auto/wayland/client/mocksurface.h b/tests/auto/wayland/client/mocksurface.h index e34d6596ebf..5155599bbfa 100644 --- a/tests/auto/wayland/client/mocksurface.h +++ b/tests/auto/wayland/client/mocksurface.h @@ -26,6 +26,9 @@ ** ****************************************************************************/ +#ifndef MOCKSURFACE_H +#define MOCKSURFACE_H + #include #include "qwayland-server-wayland.h" @@ -69,3 +72,5 @@ private: }; } + +#endif // MOCKSURFACE_H